I've been using ImageMagick for several years now, and I'm migrating all my scripts to work with IM7. I installed the "ImageMagick 7.0.0-0 Q16 x64 2015-11-22" on "Windows 7 Pro 64bit" and run all my commands as command line or batch scripts in a cmd.exe window. I've noticed a change in behavior from previous versions of IM and wonder if it's a bug or a feature. Previously when I used this command...
Code: Select all
magick -size 240x240 xc:white -pointsize 24 -gravity north -annotate +60+80 "testing text" output.jpg
... the result would be the words "testing text" printed horizontally, and centered 60 pixels to the right and 80 pixels down from the top. With this newest IM7 version I enter that same command and the line of text is located north +60+80 and
also rotated 60°.
So this command will rotate the text 60 degrees..
Code: Select all
magick -size 240x240 xc:white -pointsize 24 -gravity northwest -annotate +60+80 "testing text" rotated.jpg
But this command, adding the 0x0 to the annotate geometry, applies the text properly...
Code: Select all
magick -size 240x240 xc:white -pointsize 24 -gravity northwest -annotate 0x0+60+80 "testing test" straight.jpg
Is this rotating text behavior intentional, and should I modify all my "-annotate" commands in my scripts? Or is this a bug that might be repaired at some point?