Proper use of wildcards with -append option of convert

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 »

Try the following commands:
  • convert logo: 1.jpg
    convert logo: 2.jpg
    convert *.jpg -append -compress none logo.tif
These command work for us and suggest wildcards are working properly. We're using ImageMagick 6.2.6-7.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

We believe the problem you are having has to do with a bug in the TIFF library for Zip compression. Setting the compression to none does not compress the image so it does not exercise the bug. Note this bug only seems to occur on Windows.

In general the only restrictions on image size is the amount of resources on your system. We have personally converted images as large as 250,000 by 250,000 pixels. We tried appending 30 images and it created one TIFF image as expected. We're using ImageMagick 6.2.6-7.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

Grab the latest ImageMagick 6.2.6-8 release. It has an updated TIFF delegate library. It seems to be able to create compressed TIFF image files ok.
Post Reply