Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
fmw42
Posts: 25562 Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA
Post
by fmw42 » 2017-04-26T19:47:28-07:00
Using the TIFF clip path technique at
http://www.imagemagick.org/Usage/masking/#clip-path , it seems to work well with IM 6.9.8.4, but fails with IM 7.0.5.5 Q16
IM6
Code: Select all
convert -density 150 218755504_HOV_EPS.eps -alpha transparent -clip -alpha opaque -strip out6.png
IM7
Code: Select all
magick -density 150 218755504_HOV_EPS.eps -alpha transparent -clip -alpha opaque -strip out7.png
However, using -alpha discrete seems to work, except it looses the transparency
Code: Select all
magick -density 150 218755504_HOV_EPS.eps -alpha discrete -clip -alpha opaque -strip out7.png
magick
Site Admin
Posts: 11064 Joined: 2003-05-31T11:32:55-07:00
Post
by magick » 2017-04-27T08:54:03-07:00
Try
Code: Select all
convert -density 150 -colorspace sRGB 218755504_HOV_EPS.eps -clip -strip out6.png
Does that give expected results?
fmw42
Posts: 25562 Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA
Post
by fmw42 » 2017-04-27T09:01:13-07:00
magick wrote: ↑ 2017-04-27T08:54:03-07:00
Try
Code: Select all
convert -density 150 -colorspace sRGB 218755504_HOV_EPS.eps -clip -strip out6.png
Does that give expected results?
Yes, thanks, these both work.
Code: Select all
convert -density 150 -colorspace sRGB 218755504_HOV_EPS.eps -clip -strip out6c.png
Code: Select all
magick -density 150 -colorspace sRGB 218755504_HOV_EPS.eps -clip -strip out7c.png
For better results, use profiles rather than -colorspace sRGB