Using 6.7.6-0 version of Imagemagick montage on my latest gen MBP with the latest OS, I am trying to annotate my name into the corner of a png file:
$mogrify -gravity southeast -fill white -pointsize 30 -annotate +15+10 'Kjell Are Refsvik' square6.png
The png-file is 600x600 pixels and this command takes over a minute to complete on my machine and seems way out of order.
1. What am I not doing right here?
2. Are there other effective ways of annotating the photographers name in corner of an image?
Sincerely,
Kjell Are
Montage extremely slow
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Montage extremely slow
Montage?
try convert rather than mogrify. mogrify works on a directory of images and produces one output for each input. convert works on one image and outputs one image.
convert square6.png -gravity southeast -fill white -pointsize 30 -annotate +15+10 'Kjell Are Refsvik' square6_result.png
try convert rather than mogrify. mogrify works on a directory of images and produces one output for each input. convert works on one image and outputs one image.
convert square6.png -gravity southeast -fill white -pointsize 30 -annotate +15+10 'Kjell Are Refsvik' square6_result.png
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
Re: Montage extremely slow
For the many ways of annotating images see IM examples, Image Annotation
http://www.imagemagick.org/Usage/annotating/
The area you want is in Labeling on top of the Image itself...
http://www.imagemagick.org/Usage/annotating/#anno_on
http://www.imagemagick.org/Usage/annotating/
The area you want is in Labeling on top of the Image itself...
http://www.imagemagick.org/Usage/annotating/#anno_on
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/