Search found 11064 matches

by magick
2006-04-26T20:49:23-07:00
Forum: Bugs
Topic: Conversion from svg to pdf results in a bitmap
Replies: 15
Views: 66810

ImageMagick rasterizes vector images. We have infastructure to retain vector information but its far from complete. In this case, you probably want to use a different program than ImageMagick.
by magick
2006-04-26T20:46:34-07:00
Forum: Bugs
Topic: process hangs
Replies: 0
Views: 9751

ImageMagick can appear to hang if the image is large. In this case, the pixels are forced to disk and since disk is much slower than memory, the process can take a long time (sometimes hours if its a large image). If you are sure all your images are of reasonable size (e.g. less than 1000 x 1000 pix...
by magick
2006-04-26T15:43:55-07:00
Forum: Users
Topic: Multiple Image Conversion
Replies: 0
Views: 6457

To convert a bunch of TIFF's to JPEG's, try this command:
  • mogrify -format jpg *.tif
by magick
2006-04-26T15:10:56-07:00
Forum: Bugs
Topic: IM does not use media box by default
Replies: 3
Views: 17615

We'll investigate as soon as you provide a URL to a PDF that illustrates the problem. The PDF files we use for testing produce correct results (trimmed to MediaBox or CropBox).
by magick
2006-04-26T12:58:00-07:00
Forum: Users
Topic: .TIFF to .JPG eating up processor
Replies: 2
Views: 12700

Add the -limit option as the first option of the command line. Follow it with -debug cache to verity the pixel cache is on disk.
by magick
2006-04-26T12:29:18-07:00
Forum: Users
Topic: .TIFF to .JPG eating up processor
Replies: 2
Views: 12700

JPEG has a nice feature where you can ask the JPEG library to return a thumbnail of a large JPEG image but TIFF has no such feature unless the thumbnail is included with the large TIFF. To reduce CPU usage you can force the pixel cache to disk but it will slow down processing time considerably (you'...
by magick
2006-04-26T12:05:49-07:00
Forum: Users
Topic: File size increase with convert
Replies: 4
Views: 20422

Are you using a modern version of ImageMagick, 5.5.7 or above? Older versions of ImageMagick did not compress GIF images because of the LZW compression patent.
by magick
2006-04-26T07:09:31-07:00
Forum: Users
Topic: maximum size of image
Replies: 1
Views: 9532

We have processed images with a width and height of 250000 pixels so ImageMagick should be able to handle your requirements (7000 x 5000). ImageMagick pushes the pixel cache to disk if it cannot acquire memory. Chances are your temporary disk area is too small. Select a partition that has plenty of ...
by magick
2006-04-25T18:36:16-07:00
Forum: Users
Topic: montage's stopped adding labels to images
Replies: 2
Views: 11810

Notice
  • unable to read font `/usr/share/fonts/default/TrueType/arial.ttf'
Take a look at
  • /usr/lib/ImageMagick-6.2.5/config/type-ghostscript.xml
and see if the glyphs names actually exist. You can specify a different font
  • -font times
or a font file
  • -font arial.ttf
by magick
2006-04-25T18:03:43-07:00
Forum: Users
Topic: montage's stopped adding labels to images
Replies: 2
Views: 11810

The montage output filename is always the last argument on the command line. Put -debug all as the first option on the command line. We noticed your debug output does not show any text annotation which of course is what you want. When we tried your script with the current release of ImageMagick, 6.2...
by magick
2006-04-25T14:02:48-07:00
Forum: Users
Topic: montage's stopped adding labels to images
Replies: 2
Views: 11810

Chances are the montage program is not finding any fonts. Try adding -debug all to your command line and review the output carefully for problems.
by magick
2006-04-25T07:01:36-07:00
Forum: Developers
Topic: Composing images multi-threaded - problems
Replies: 3
Views: 18858

Thanks, however, we need a complete program that we can download, compile, and run. Alternatively, try 6.2.7-2 yourself. We suspect it will work in a threaded environment.
by magick
2006-04-24T15:36:09-07:00
Forum: Users
Topic: Whats the difference between Q8 and Q16?
Replies: 1
Views: 16333

Q8 uses 100% less resources than Q16. Q16 is more precise in its computations. Q8 must scale any 16-bit images to 8-bit.
by magick
2006-04-24T15:32:58-07:00
Forum: Developers
Topic: Composing images multi-threaded - problems
Replies: 3
Views: 18858

It is quite simple to upgrade any method to be thread-safe. We must use cache views rather than the default Acquire/GetImagePixels(). The problem is that there are thousands of places within the ImageMagick that need to be tweaked. So for now we'll make methods thread-safe on demand. One solution wo...
by magick
2006-04-24T13:45:03-07:00
Forum: Bugs
Topic: convert animated gif to eps mishandling filenames w/ 2 '.'
Replies: 2
Views: 16873

It will create 6 because EPS is not a multi-image format.