Shifting "-fill x.png"
Posted: 2016-01-21T07:33:59-07:00
This draws a white disc on a blue background:
This uses circle.png as a "fill color" when drawing a new larger circle:
In ImageMagick 6.6.9-7 2014-03-06 Q16 everything in x.png looked centered, but now in ImageMagick 6.9.3-0 Q16 x86_64 2016-01-08 the fill content is shifted +10+10. Any way to force the old behavior, or how could I obtain the old result using the new behavior?
Code: Select all
convert -size 100x100 xc:skyblue -fill white -stroke black -draw "arc 20,20 80,80 0,360" circle.png
Code: Select all
convert -size 100x100 xc:none -fill circle.png -draw "circle 50,50 50,10" x.png
In ImageMagick 6.6.9-7 2014-03-06 Q16 everything in x.png looked centered, but now in ImageMagick 6.9.3-0 Q16 x86_64 2016-01-08 the fill content is shifted +10+10. Any way to force the old behavior, or how could I obtain the old result using the new behavior?