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..