Imagemagick Flow

Post Reply
congomonster
Newbie
Posts: 17
Joined: Wed Jul 03, 2013 5:40 pm
Location: Germany
Contact:

Imagemagick Flow

Post by congomonster »

Hi,



need some help. I want to create a flow where Imagemagick converts the Pictures. The commandline command is this:



convert test.jpg +profile icm -profile sRGB.icc -intent Relative -black-point-compensation -profile ISOcoated_v2_300_eci.icc -density 300x300 test_cmyk.tif



In this case switch should pick up the files and put them into the output folder. I now i can use the execute command tool. But i don't know what to write in. :(
congomonster
Newbie
Posts: 17
Joined: Wed Jul 03, 2013 5:40 pm
Location: Germany
Contact:

Imagemagick Flow

Post by congomonster »

Ok i came one step further. The conversion is ready.



That is what i wrote to the execute command:



Command: C:Program Files (x86)ImageMagick-6.8.6-Q16convert.exe



Arguments: +profile icm -profile "C:Program Files (x86)ImageMagick-6.8.6-Q16sRGB.icc" -intent Relative -black-point-compensation -profile "C:Program Files (x86)ImageMagick-6.8.6-Q16ISOcoated_v2_300_eci.icc" -density 300x300 "%1" "tif:%3/[Job.NameProper].tif"



Important is here that the arguments from Imagemagick comes first!



Output: Result in folder

not null



The big Problem is now that switch makes a folder in the output folder with a file called Job.NameProper.tif. I found out that every sign after the / is written into text. I think i must change something in this part: "tif:%3/[Job.NameProper].tif". Ialso tried 2% but that did not work ):
congomonster
Newbie
Posts: 17
Joined: Wed Jul 03, 2013 5:40 pm
Location: Germany
Contact:

Imagemagick Flow

Post by congomonster »

Ok got it to work! Got help from my co-worker :)



This is what we put in the execute command:



Command: C:Program Files (x86)ImageMagick-6.8.6-Q16convert.exe



Arguments: +profile icm -profile "C:Program Files (x86)ImageMagick-6.8.6-Q16sRGB.icc" -intent Relative -black-point-compensation -profile "C:Program Files (x86)ImageMagick-6.8.6-Q16ISOcoated_v2_300_eci.icc" -density 300x300 "%1" "tif:%2"



Output: File at Path

copy Job: No

Filtyp: Tiff

Error: not null



solved (:
ppasquier
Newbie
Posts: 3
Joined: Thu Jan 22, 2015 5:07 pm

Imagemagick Flow

Post by ppasquier »

Hi CongoMonster

thanks a lot for your topic, it helps me to how configure my flow but I tried using yours for converting Illustrator EPS files in transparent PNG file



If I tried this comand line in terminal, it's good



/opt/ImageMagick/bin/convert -colorspace RGB -background transparent "" "png32:.png"





I tried this (I'm on macintosh) :

command: /opt/ImageMagick/bin/convert

arguments: -colorspace RGB -background transparent "%1" "png32:%2"

output to path

copy input: yes

extension type: PNG (*.png)

ignoring outcode



It works fine but the result is not good

It looks like the EPS file bad pixelized and not transparent background



I've you, or anyone else, got any idea?

PP
Post Reply