Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to convert a few files with ImageMagick from JPG to Tiff Background from white to transparent and RGB -> CMYK

at the moment it looks like this (worked fine with .png but .png unfortunately doesnt support CMYK) Its a .bat file which is executed on a server

rem mogrify -path C:\Users\fabian.breitenberger\Desktop\TFF -format .tiff C:\Users\*.*\Desktop\Input-Black\*.jpg
pause
mogrify -path C:\Users\*.*\Desktop\Out  -fuzz 10%% -transparent white C:\Users\*.*\Desktop\TFF\*

rem mogrify - C:\Users\*.*\Desktop\Out\ -density 600 -units pixelsperinch C:\Users\*.*\Desktop\Out\*
pause

mogrify -path C:\Users\*.*\Desktop\Out -profile rgb.icc C:\Users\*.*\Desktop\Out\*.tiff
pause

mogrify -path C:\Users\*.*\Desktop\Out -profile cmyk.icc C:\Users\*.*\Desktop\Out\*.tiff
pause

What is the Failure here?

The tiff files are in the out folder afterwards but they are NOT transparent... and after using the profile i cannot open them..

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.