Search found 11064 matches

by magick
2006-03-03T08:07:24-07:00
Forum: PerlMagick
Topic: Setting PerlMagic resource limits...
Replies: 2
Views: 22915

ImageMagick reports resources with three numbers. The first is the current resource request, the second is the total resources consumed at the moment, and the last is the resource limit. In the case of the pixel cache, when the memory limit is reached, the next image is automatically cached to memor...
by magick
2006-03-03T07:45:06-07:00
Forum: Bugs
Topic: v6.2.6 PSD conversion with *.psd[0]
Replies: 9
Views: 72183

We'll take another look at the problem this weekend and get back to you.
by magick
2006-03-01T09:01:25-07:00
Forum: Bugs
Topic: convert always exit with exit status zero
Replies: 2
Views: 23266

There is a patch in ImageMagick 6.2.6-2 for the problem you reported but the patch is flawed. We will apply a more robust patch within a day or two.
by magick
2006-02-28T20:24:51-07:00
Forum: Users
Topic: Same command line creates different JPG qualities
Replies: 0
Views: 10384

The JPEG quality is not stored in the JPEG image, it is estimated. Looks like Fireworks has a problem estimating the correct JPEG compression quality.
by magick
2006-02-27T20:15:24-07:00
Forum: Users
Topic: Screen Capture URL
Replies: 1
Views: 18252

You can convert a web page to JPEG, for example, with this command: convert http://www.google.com/index.html google.jpg This process requires the html2ps script. A better solution might be to have a script fire up Firefox and issue a print command to Postscript then convert the Postscript to a JPEG ...
by magick
2006-02-27T08:39:32-07:00
Forum: Users
Topic: First page of PDF as image?
Replies: 0
Views: 16467

To convert just the first page of a PDF document, try this command:
  • convert 'image.pdf[0]' image.jpg
by magick
2006-02-26T10:43:05-07:00
Forum: Users
Topic: JPG Quality Problems
Replies: 0
Views: 10609

Try this command:
  • convert 113.jpg -support 0.95 -resize 200x280! -strip -quality 80 image.jpg
You may need to play with the support or quality options to get an optimal result.
by magick
2006-02-26T10:22:12-07:00
Forum: Users
Topic: Using IM with trolltech's QT
Replies: 0
Views: 10497

Magick++ has methods to handle memory blobs. You can read/write in whatever format you want (e.g. GIF, JPEG, MIFF, etc.) or perhaps the best would be to just pass raw images in the RGBA format.
by magick
2006-02-26T10:20:07-07:00
Forum: Bugs
Topic: Small memory leak in MagickReadImageFile
Replies: 1
Views: 18538

Did you try closing the file you pass MagickReadImageFile()? ImageMagick call fdopen() on the file descriptior you pass and the memory is not released until you call fclose().
by magick
2006-02-25T20:56:47-07:00
Forum: Bugs
Topic: Problems with GetConfigureInfo, ListConfigureInfo etc.
Replies: 6
Views: 35543

To test your code we just cut-n-pasted your code snippet into the button project you find in c:\Program Files\ImageMagick-6.2.6-Q16\Magick++_Demos. When you get an undefined symbol just add MagickLib:: in front of it to tell the C++ compiler to look in the MagickLib namespace.
by magick
2006-02-25T20:49:28-07:00
Forum: Bugs
Topic: last try: bug report
Replies: 0
Views: 15556

Thanks for the problem report and patch. We'll get your patch into ImageMagick 6.2.6-2.
by magick
2006-02-25T09:47:41-07:00
Forum: Bugs
Topic: Problems with GetConfigureInfo, ListConfigureInfo etc.
Replies: 6
Views: 35543

We tried your code with ImageMagick 6.2.6-1 under Windows compiled with Visual C++ 2003 .Net and it worked without complaint. It produced a file with the image attributes in it as expected.
by magick
2006-02-24T11:56:19-07:00
Forum: Users
Topic: Error while configuring ImageMagick that missing libgvc miss
Replies: 0
Views: 10211

Do you need the gvc delegate library? If not, this warning can safely be ignored. If so, you need the latest release of gvc to build with ImageMagick. They have made some changes to the library recently which is not backwards comapible with previous versions.
by magick
2006-02-24T08:59:47-07:00
Forum: Users
Topic: Help on Installing on CentOS 4.2
Replies: 0
Views: 10097

To install ImageMagick from source, use these commands:
  • tar xvfz ImageMagick-6.2.6-1.tar.gz
    cd ImageMagick-6.2.6
    ./configure
    make
    make install
by magick
2006-02-23T19:35:06-07:00
Forum: Bugs
Topic: Problems with GetConfigureInfo, ListConfigureInfo etc.
Replies: 6
Views: 35543

We assume you declared *p as char **p? We tried your code under Windows XP with ImageMagick 6.2.6-1 and the GetConfigureList() method properly returned the configure list as expected without complaint or fault.