possible bug in -geometry offsets when scaling IM 6.7.8.2

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.
Post Reply
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

possible bug in -geometry offsets when scaling IM 6.7.8.2

Post by fmw42 »

IM 6.7.8.2 Q16 OSX Snow Leopard

see
viewtopic.php?f=1&t=21438

Composited overlay image should be centered in the circle on the background image


Compare

Incorrect:
convert Ticket.png dPerlman.jpg +repage -strip -gravity center -geometry 240x240+510+118 -composite test1.png

Correct:
convert Ticket.png \( dPerlman.jpg -resize 240x240 \) +repage -strip -gravity center -geometry +510+118 -composite test2.png
Post Reply