Page 1 of 1

annote with newline

Posted: 2018-01-04T00:43:18-07:00
by imma4
Hello,

Recently I had to create some labels using a command like this :

Code: Select all

convert -size 30x25 xc:yellow -annotate +1+10 "2016\n0912" 20160912.png
On a ubuntu 16.04 system with ImageMagick 6.8.9-9 Q16 x86_64 2017-07-31 I get this result:
Image

If I repeat this command a fedora 27 system with ImageMagick 6.9.9-19 Q16 x86_64 2017-10-11 I see this:
Image

I am not sure if this is a ImageMagick bug (maybe it's fedora) but I would expect the same results on both machines.

Re: annote with newline

Posted: 2018-01-04T04:25:47-07:00
by magick
We're using ImageMagick 6.9.9-31 under Fedora 26 and we get expected results.

Re: annote with newline

Posted: 2018-01-04T10:28:17-07:00
by fmw42
Your command works fine for me on IM 6.9.9.19 Q16 Mac OSX Sierra.

Code: Select all

convert -size 30x25 xc:yellow -annotate +1+10 "2016\n0912" 20160912.png

Re: annotate with newline

Posted: 2018-01-04T11:38:47-07:00
by imma4
I took the f27 sources and compiled them on a f26 system. Results are as expected so some other part in fedora 27 is the problem and this is not a ImageMagick bug.
Thanks for testing.