Search found 11064 matches

by magick
2006-03-15T07:54:13-07:00
Forum: Developers
Topic: Memory Leak in Magick++
Replies: 3
Views: 23220

The memory leak should be fixed in the latest release, ImageMagick 6.2.6-4.
by magick
2006-03-14T18:59:53-07:00
Forum: Users
Topic: splitting an image up in one operation
Replies: 1
Views: 10966

Try the following command:
  • convert image.jpg -crop 100x100 image-%d.gif
This command cuts multiple 100x100 rectangles from the image and stores them into separate GIF images.
by magick
2006-03-14T08:18:22-07:00
Forum: MagickWand
Topic: PDF CropBox
Replies: 2
Views: 22746

In MagickWand, use MagickSetImageOption() to associate an attribute with an image. For example,
  • MagickSetImageOption(wand,"pdf","use-cropbox","true");
by magick
2006-03-14T08:14:34-07:00
Forum: Bugs
Topic: v6.2.6 PSD conversion with *.psd[0]
Replies: 9
Views: 72183

Thanks. We have a few issues to resolve before we can get to PSD buts its high on the list of priorities.
by magick
2006-03-13T18:00:04-07:00
Forum: MagickWand
Topic: ReadImage
Replies: 0
Views: 16962

Not sure what you're asking. If you want to destroy an image, just destroy the wand with DestroyMagickWand(). The file handle associated with an image is automatically closed after the image is read.
by magick
2006-03-13T17:50:45-07:00
Forum: Bugs
Topic: cannot convert Photoshop 9.0 16bit multilayer
Replies: 3
Views: 33870

We don't do non-compete forms so I guess we will be unable to help you with your problem. A non-compete could very well prevent us from open-sourcing any enhancements to the PSD support within ImageMagick.
by magick
2006-03-13T10:47:47-07:00
Forum: Bugs
Topic: 57 of 714 tests failed
Replies: 0
Views: 14477

We run the regression tests before an ImageMagick release and they must all pass. Some of the regression tests require certain delegate libraries and programs to pass. Perhaps you do not have these. Some regression tests failing means a loss of functionality not that ImageMagick is broken. For examp...
by magick
2006-03-13T08:55:09-07:00
Forum: Bugs
Topic: TIFF photometric interpre./inverted colors [WORKS ON 6.2.6]
Replies: 1
Views: 18811

We're using ImageMagick 6.2.6 and the conversion worked fine. The photometric interpretation is still min-is-black but the image does not have inverted colors. We could add an option to force min-is-white photometric interpretation if that is desirable.
by magick
2006-03-13T08:52:02-07:00
Forum: Bugs
Topic: v6.2.6 PSD conversion with *.psd[0]
Replies: 9
Views: 72183

Yes we did. We discovered that we need the PSD format specification if there is any hope of enhancing PSD support within ImageMagick. The original PSD coder was contributed and the author is no longer available and the only documentation we have is from the Encylopedia fo Graphics Format which is fa...
by magick
2006-03-13T08:45:58-07:00
Forum: Users
Topic: resample does not work
Replies: 4
Views: 21982

If you read the PNG specification you will find pixels-per-inch is not supported in the PNG format.
by magick
2006-03-13T08:12:21-07:00
Forum: Users
Topic: Q: How to use the samples from anthony in the MS world
Replies: 2
Views: 14577

All of Anthony's command line examples should work under Windows except no backslash is required before the open parenthesis (i.e. use ( instead of \() and you might need to use single quotes where Anthony's example uses double quotes. Note that this is just requirements of the command line shell. S...
by magick
2006-03-13T08:09:40-07:00
Forum: Users
Topic: GIF file size
Replies: 0
Views: 8668

It appears you may have an older version of the ImageMagick library which created uncompressed GIF images due to patent restrictions on LZW compression. Recent versions of ImageMagick create LZW compressed GIF images.
by magick
2006-03-13T08:04:30-07:00
Forum: Users
Topic: Many files created in /tmp
Replies: 2
Views: 15768

ImageMagick caches image pixels to disk if the image you are working with is large. When ImageMagick exits it should clean-up any temporary files it creates. If the ImageMagick process fails with a signal it cannot catch, the temporary files remain behind, however, they can safely be removed after t...
by magick
2006-03-13T06:26:14-07:00
Forum: Bugs
Topic: TIFF photometric interpre./inverted colors [WORKS ON 6.2.6]
Replies: 1
Views: 18811

Post a URL to your image here and the command line you use to convert it so we can reproduce the problem.
by magick
2006-03-12T07:29:12-07:00
Forum: Users
Topic: Appending 2 images of different sizes?
Replies: 1
Views: 13434

To append images of difference sizes, use the montage program with a mode of concatenation (e.g. -mode concatentate).