I want to generate some titles with border with Imagemagick.
I only find "stroke" to do this, but it's rendering an internal border inside the text:
Code: Select all
convert -size 320x85 xc:transparent -font Bookman-DemiItalic -pointsize 72 \
-draw "text 25,60 'Magick'" -channel RGBA -gaussian 0x6 -fill darkred \
-draw "text 20,55 'Magick'" fuzzy-magick2.png
The original is there.
Code: Select all
convert -size 320x85 xc:transparent -font Bookman-DemiItalic -pointsize 72 -weight bold \
-draw "text 25,60 'Magick'" -channel RGBA -gaussian 0x6 -fill darkred -stroke magenta \
-draw "text 20,55 'Magick'" fuzzy-magick.png
Basically the border goes inside.
It's nice there, but when i want to do it on a smaller title, i have this:
Code: Select all
convert -size 320x85 xc:transparent -font "erasbd.ttf" -pointsize 20 \
-fill yellow -stroke "#000000" \
-draw "text 0,18 'Compendium'" fuzzy-magick.png
And that's not really nice (especially the "e").
So i was wondering if it's possible to do external borders, and if it is, how ?
Any help would be gladly welcomed, thank you.