Hello,
I would like to know why when I use ImageMagick on my computer with this command :
exec("convert -background transparent -fill white -pointsize 16 label:'My test' -bordercolor '#00000070' -border 5x5 'test.png'");
I have my label written correcty in test.png. (without font and style)
But when I do the same in my website, the text "My test" is automatically in Italic ?!
Did I miss something on my command ?
Many thanks
Problem with Italic
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Problem with Italic
Your command is okay. You haven't specified a font, so IM has picked one for you, and perhaps this varies by platform. "convert -list font" lists available fonts.
snibgo's IM pages: im.snibgo.com
Re: Problem with Italic
Super, by adding the font name, now it's ok !
Thanks you snibgo
Thanks you snibgo