I'm loving working with Image Magick, it's amazingly powerful! I'm using the command line utility on Fedora Linux.
I've been trying to get text to sit to the right of an image while being aligned, and I've been trying to achieve this by reading the Annotation doc here:
http://www.imagemagick.org/Usage/annotating/
But I haven't had any luck using this. My goal is to have something that looks like this: (jpg is the image)
Code: Select all
-------- text here
| | text here
| jpg | text here
| | text here
-------- text here
convert mypic.jpg -gravity east -resize 100x100 -background none -fill black -font Utopia-Italic -pointsize 24 -geometry +200 label:"$1" \
-font Utopia-Regular label:"$2" -append \
-font Utopia-Regular -gravity east label:"$3" -append \
-font Utopia-Regular label:"$4" -append \
-font Utopia-Regular label:"$5" -append \
-size 720x480 label.gif
Any resources or suggestions would be hugely appreciated, thank you!