Performance issue with annotate

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
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

You can convert directly to PDF with this command:
  • convert $FILENAME.tif -font helvetica -pointsize $POINTSIZE -gravity south -annotate 0 "$TIMESTAMP" $FILENAME.pdf
You can remove the memory load from your server but make the process slower by adding
  • -limit memory 64 -limit map 64
to your command line. You may get a speed-up by separating your multi-page document into separate image files and annotate one at a time.
Post Reply