can anyone guide me with a TIFF alpha channel/path question.
I need to convert all sorts of TIFFs to a normalized JPEG. Some of those TIFFs
have extra alpha channels (sample "logo-alpha.tif", presumably a left over from
the designer), some have transparent background and a clipping path (sample
"logo-path.tif").
I'm looking for a generic convert command line which processes both while
filling the transparency with a defined background color.
Currently I do
Code: Select all
convert input.tif -background yellow -alpha remove output.jpg
input1:
http://dl.dropbox.com/u/84530/IM/logo-alpha.tif
output1:
input2:
http://dl.dropbox.com/u/84530/IM/logo-path.tif
output2:
output1 should not have any yellow patches. The extra channels should
be ignored. output2 is correct.
An ideal solution would use the same convert command for both input
files. output1 should not be influenced by the extra alpha channels but output2
must be on a yellow background. I wouldn't like to do the extra step of
recognizing whether the input has a clipping path included.
Thanks very much for any help
Axel
(using IM 6.8.3-3 with tiff 3.9.7)