EPS file:
http://www.fmwconcepts.com/misc_tests/c ... OV_EPS.eps
IM 6.9.8.3 Q16:
Code: Select all
identify -quiet -format "%[8BIM:1999,2998:#1]" \
-density 150 218755504_HOV_EPS.eps |\
convert -density 150 218755504_HOV_EPS.eps \
-profile /Users/fred/images/profiles/sRGB.icc \
\( - -negate +write mask6.png \) \
-alpha off -compose copy_opacity -composite \
result6.png
Result:
IM 7.0.5.4 Q16:
(Note I had to add -alpha off in using the mask in IM 7 otherwise it was totally transparent)
Code: Select all
magick identify -quiet -format "%[8BIM:1999,2998:#1]" \
-density 150 218755504_HOV_EPS.eps |\
magick -density 150 218755504_HOV_EPS.eps \
-profile /Users/fred/images/profiles/sRGB.icc \
\( - -alpha off -negate +write mask7.png \) \
-alpha off -compose copy_opacity -composite \
result7.png
Result:
Also changing the density, cause the result image's transparent pattern to be different.
It is clear from the displayed images, that the mask is not getting the correct density when being generated in IM 7. That is why the result image looks different for different densities.
I am using RSVG 2.40.16. Can someone else test this using Inkscape?