When using the command composite to save a transparent Photoshop file I get a different result than with convert -composite.
With composite I get the proper result of a PSD file with a transparent background.
The command is:
Code: Select all
composite input.jpg transparent_file.tif mask.jpg output.psd
Only drawback with the above is that the clipping path in the input file is discarded and so is the embedded ICC-Profile and both are needed in the final output file.
So trying with:
Code: Select all
convert -composite input.jpg transparent_file.tif mask.jpg output.psd
This doesn't give me a transparent background but the ICC-profile and clipping path are there.
Isn't these two commands supposed to have the same behavior??
Is this a bug??
Thanks
Jan