I am wanting to use imagemagick to add watermarks to photographs. I am using OSX and Python scripts for the code and was trying the code from (http://www.imagemagick.org/Usage/text/#pango_markup) currently I am struggling to understand why I can't get the images to appear.
serinitus:nppPhotos ns$ convert -background lightblue -gravity center -size 180x \
> pango:"The <b>bold</b> and <i>beautiful</i>" \
> pango_formatting.gif
convert: unable to open image `The <b>bold</b> and <i>beautiful</i>': No such file or directory @ error/blob.c/OpenBlob/2658.
convert: no decode delegate for this image format `PANGO' @ error/constitute.c/ReadImage/501.
convert: no images defined `pango_formatting.gif' @error/convert.c/ConvertImageCommand/3187.
serinitus:nppPhotos ns$
Installed versions are ImageMagick 6.8.9-7 Q16 x86_64 2014-09-14 and pango-1.36.7 via homebrew.
I have tried re-installing ImageMagick with the --with-pango flag.
I'm down to one of two options: I'm missing something really obvious with the command line (even thought I copied/pasted it in), or there is a config error with the way that brew is installing imagemagick on OSX Lion.