Re: Default settings for convert

Pavel Sanda <[email protected]> Mon, 7 Jul 2008 01:00:47 +0200
Newsgroups gmane.comp.video.image-magick.devel
Message-ID <[email protected]>
> >   Do you have an idea what is so different for .png and .ppm file generation
> 
> Its an artifact of converting an image with an alpha channel (infile.eps)
> to one that does not support transparency (test.ppm). To get the results
> you desire, use
> 
>       convert infile.eps -flatten infile.ppm

Yes, that works!

This flattening was done by default in previous versions? - in other words will
I obtain identical results with Imagemagick <=6.3.5 when I change the script code from
"convert infile.eps infile.ppm" to "convert infile.eps -flatten infile.ppm" ?
The point is to have a generally working script independent on Imagemagick version...

Thanks for all your answers,
Pavel