Another possible bug IM 7.0.5.5 Q16 with clip path
Posted: 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
IM7
However, using -alpha discrete seems to work, except it looses the transparency
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