For instance, i want to use imagemagick to create headers (or menu images) for my sites. Dynamically, based on CMS input.
Right now i have this:
Code: Select all
convert 'basel1.gif' -fill white -font verdana.ttf -pointsize 10 -gravity north -annotate +0+0 'HOME' Label_IM.jpg
Take baseL1.gif, Write some text using a white font and the Verdana font with pointsize 10.
So far so good, but how do i know the width/height of the written text, is it possible to retreive that information?