I have a psd file, which was created by photoshop, and it has a red text in it.
http://werk3at.net/rol/color.psd
when i convert it to jpg I set background color to white and flatten it to get rid of all transparency. afterwards the text color changes to green.
Code: Select all
convert color.psd -background white -flatten color.jpg
as you can see here:
http://werk3at.net/rol/color.jpg
command without flatten
Code: Select all
convert color.psd color.jpg
it produces three outputfile where the first one is correct and the other ones are parts of the image.
why does flattening change the color and how can i prevent it from doing so?
thanks in advance, richard