Search found 11064 matches

by magick
2006-03-27T20:32:20-07:00
Forum: Users
Topic: Can I invert
Replies: 0
Views: 9761

Use the negate() method to invert an image.
by magick
2006-03-27T13:02:09-07:00
Forum: Bugs
Topic: convert makes bad eps (gs dies, file looks bad too)
Replies: 1
Views: 16315

Thanks for the problem report. We fixed this bug in ImageMagick 6.2.6-7 Beta available sometime tommorrow.
by magick
2006-03-27T12:59:59-07:00
Forum: Bugs
Topic: ImageMagick-6.2.6 for CPG
Replies: 2
Views: 19208

Ok, try
  • ldd /usr/local/bin/convert
It will confirm its looking for libMagick.so and cannot find it. To fix the problem contact your system administrator or a manual page for help.
by magick
2006-03-27T12:27:47-07:00
Forum: Users
Topic: Settings and Operations, the relationship?
Replies: 1
Views: 12072

You are right, the documentation is unclear about the color reduction operator. The options -colors, -dither, and -treedepth all are settings but they trigger a color reduction operator if an image is available.
by magick
2006-03-27T10:08:11-07:00
Forum: Users
Topic: can't install it !!!
Replies: 2
Views: 14027

You can try
  • make -k -i install
by magick
2006-03-27T10:03:13-07:00
Forum: Developers
Topic: Possible memory leak
Replies: 1
Views: 14385

In the image class you can use a font filename to identify a particular font file (e.g. arial.ttf) but you can also use font handles. A font handle searches the type.xml configuration file for a matching font. In this file you can set the font style, weight, etc. For example, you will find Helvetica...
by magick
2006-03-27T08:56:41-07:00
Forum: Users
Topic: Error while Creating a Thumbnail from avi
Replies: 0
Views: 8628

AVI support is not robust but we'll see what we can do. Post a URL so we can download your AVI image and we will investigate further.
by magick
2006-03-27T08:54:01-07:00
Forum: Users
Topic: can't install it !!!
Replies: 2
Views: 14027

All of the ImageMagick delegate libraries are conveniently available here: ftp://ftp.imagemagick.org/pub/ImageMagick/delegates.
by magick
2006-03-27T08:46:15-07:00
Forum: Developers
Topic: Possible memory leak
Replies: 1
Views: 14385

The best path forward would be post a working program that illustrates the possible memory leak so that we can run it, reproduce the problem, and offer a solution. We do run a memory leak detector on ImageMagick code but its possible a leak went undetected. Magick++ has the DrawableFont() method whe...
by magick
2006-03-27T08:43:22-07:00
Forum: Developers
Topic: rendering text performance - very poor
Replies: 16
Views: 49444

The best path forward would be to download the Freetype library and reads its documentation or we suspect there may be a Freetype book by now that would be helpful. All the ImageMagick Freetype related code can be found in the source distribution in the file magick/annotate.c.
by magick
2006-03-27T08:39:36-07:00
Forum: Bugs
Topic: ImageMagick-6.2.6 for CPG
Replies: 2
Views: 19208

Type
  • man ldconfig
You need to set your runtime bindings so the ImageMagick programs can find the libMagick dynamic library on your system.
by magick
2006-03-26T19:30:11-07:00
Forum: Bugs
Topic: new option "-define pdf:use-cropbox=true" doesn't
Replies: 4
Views: 21450

Can you post a URL to your image so we can download it?
by magick
2006-03-26T15:07:44-07:00
Forum: Users
Topic: can't install it !!!
Replies: 2
Views: 14027

The answer to your question lies in the config.log file. Track down where the JPEG delegate library is validated. The validation fails and it will tell you why. Fix the problem and rerun the configure script until the JPEG library is properly validated. At this point you can build and install ImageM...
by magick
2006-03-26T15:05:54-07:00
Forum: Users
Topic: Size matters!
Replies: 2
Views: 14896

In earlier versions of ImageMagick, -strip is equvilalent to +profile "*" +comment.
by magick
2006-03-26T09:06:03-07:00
Forum: Developers
Topic: rendering text performance - very poor
Replies: 16
Views: 49444

For a high performance needs we recommend drawing directly with the Freetype library and utilizing the font cache API they provide.