Montage extremely slow

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
refsvik
Posts: 2
Joined: 2011-06-21T23:32:29-07:00
Authentication code: 8675308

Montage extremely slow

Post by refsvik »

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
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Montage extremely slow

Post by fmw42 »

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
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Re: Montage extremely slow

Post by anthony »

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
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply