Thanks for your feedback.
Adding the "-compress none" in the command works but somehow the file will not be properly displayed by some tool:
- IE opens a white page (KO)
- Paint and Windows opens the image properly with color (OK)
More importantly, my homemade tool does not display anything so either using 6.9.9 (with a mix of convert and composite) or generating JPG files is better for the time being.
Issue with composite -stereo on 6.7.8
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Issue with composite -stereo on 6.7.8
As of IM 6.9.9.26 and IM 7.0.7.14 you can now do
Code: Select all
convert image1 image2 -geometry +X+Y -compose stereo -composite result
Code: Select all
magick image1 image2 -geometry +X+Y -compose stereo -composite result
Re: Issue with composite -stereo on 6.7.8
Thank you Fred !