Code: Select all
convert -resample 72x72 -resize "1024x1024>" -units PixelsPerInch -quality 95 test.tif test.jpg
orig: http://www.50amp.com/im/alphatest.tif
what it should look like: http://www.50amp.com/im/alphatest-good.jpg
what it shouldn't look like: http://www.50amp.com/im/alphatest-bad.jpg
I've tried several options to try to keep IM from interpreting the alpha channel but have had no luck. For example:
Code: Select all
convert -resample 72x72 -resize "1024x1024>" -units PixelsPerInch -quality 95 test.tif -alpha off test.jpg
Code: Select all
convert -channel CMYK -resample 72x72 -resize "1024x1024>" -units PixelsPerInch -quality 95 test.tif test.jpg
Am I making syntax errors or do these operators just no do what I'm thinking they do?