Re: Default settings for convert

[email protected] Sun, 6 Jul 2008 15:43:12 -0700
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


even better

      convert -density 400 infile.eps -resize 25% -flatten infile.ppm