Can someone tell me why the following doesn't produce an annotated image? According to 'convert -list Type' that font exists (and checking the xml file, it's also in the right spot on the system.)


----------
#!/usr/bin/perl -w
use Image::Magick;

my $string = 'Test overlay.';

my $image = new Image::Magick;
$image->Read('snapshot-00000.rgb');
$image->Annotate(text=>$string, font=>'BitstreamVeraSans', pointsize=>11, fill=>'black');
$image->Write(filename=>'capture.jpg', quality=>85);
undef $image;
----------
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to