IM 6.7.9.0 Q16 Snow Leopard
Is this expected behavior for -coalesce? Without -coalesce I get a meaningful result. With coalesce the result it totally transparent.
convert -size 128x128 xc: logo3.jpg lena2.jpg zelda3.jpg miff:- |\
convert - -delete 0 -evaluate-sequence mean show:
convert -size 128x128 xc: logo3.jpg lena2.jpg zelda3.jpg miff:- |\
convert - -coalesce -delete 0 -evaluate-sequence mean show:
Is this expected behavior for -coalesce IM 6.7.9.0 Q16
Re: Is this expected behavior for -coalesce IM 6.7.9.0 Q16
We'll take a look @ the problem. In the mean-time add -alpha off to your command line.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Is this expected behavior for -coalesce IM 6.7.9.0 Q16
magick wrote:We'll take a look @ the problem. In the mean-time add -alpha off to your command line.
Thanks. I just removed the -coalesce in my script and it works fine. But I wanted to be sure that this is what you expect when using -coalesce.
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: Is this expected behavior for -coalesce IM 6.7.9.0 Q16
As you have not set disposals, and all later frames are opaque -coalesce should do nothing. I'd say something is haywire in the low level comparison functions due to alpha changes.
I have no time to look at it though.
I have no time to look at it though.
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Is this expected behavior for -coalesce IM 6.7.9.0 Q16
I believe Magick made a change already.anthony wrote:As you have not set disposals, and all later frames are opaque -coalesce should do nothing. I'd say something is haywire in the low level comparison functions due to alpha changes.
I have no time to look at it though.
2012-08-16 6.7.9-1 Cristy <quetzlzacatenango@image...>
...
Don't add matte channel for -coalesce if input images don't have one.