Search found 11064 matches

by magick
2006-03-10T18:13:19-07:00
Forum: Users
Topic: Error with CMYK images and the compare utility
Replies: 1
Views: 11113

We have a patch in 6.2.6-4 Beta to correctly scale the RGB to CMYK color conversion. 6.2.6-4 is scheudled for release within a few days.
by magick
2006-03-10T14:42:48-07:00
Forum: Users
Topic: Different signatures from the same image
Replies: 3
Views: 18058

We thought that cloning in MagickCore might be best for the reasons you mentioned, but we choose not to because its quite expensive to modify a cloned image and you as the user could always clone the image yourself before calling WriteImage(). We clone in MagickWand because its a higher level API an...
by magick
2006-03-10T11:45:01-07:00
Forum: MagickWand for PHP
Topic: php 5.1.2 centos 4.2
Replies: 1
Views: 21614

Ok, only two possibilities. One you have more than one version of MagickWand on your system or the configure script is not set up proerly to detect MagickSetImageTicksPerSecond().
by magick
2006-03-10T11:42:36-07:00
Forum: Users
Topic: Different signatures from the same image
Replies: 3
Views: 18058

Image signatures are sensitive to the image depth, image colorspace, and whether the image has an active opacity channel or not. An image with image->matte set to False, for example, produces a different signature than one with image->matte set to True. Given the above could that account for the dif...
by magick
2006-03-10T11:38:23-07:00
Forum: MagickWand for PHP
Topic: php 5.1.2 centos 4.2
Replies: 1
Views: 21614

MagickSetImageTicksPerSecond() is a relatively new method(). If its not found it just means you need to upgrade your ImageMagick distribution. The current release is 6.2.6-3.
by magick
2006-03-10T11:36:28-07:00
Forum: Developers
Topic: Q: IdentifyImage for files containing multiple Images
Replies: 1
Views: 18336

ImageMagick tries to determine what file format an image is in but can't always succeed. If the magic number does not confirm its format it tries to use the file extension (.ico means the image is in the ICO format). You can always force a format. For example, ico:image.dat tells ImageMagick the ima...
by magick
2006-03-10T08:12:28-07:00
Forum: Bugs
Topic: Bug in 6.2.6-3's "convert -colors 256 a.png b.png"
Replies: 1
Views: 20032

Use this command:
  • convert srcimg.png -resize 264x png8:dstimg.png
by magick
2006-03-09T12:23:17-07:00
Forum: Users
Topic: Need to check for corrupt images
Replies: 0
Views: 9344

Use the identify program to check for corrupt image files. Iterate thru all the files and check for a non-zero program exit status. A non-zero status means an exception occurred most likely due to a corrupt image.
by magick
2006-03-09T12:21:06-07:00
Forum: Developers
Topic: Q: IdentifyImage for files containing multiple Images
Replies: 1
Views: 18336

To identify each image in the list you must iterate over the list. Something like:

Code: Select all

for (next=image; next != (Image *) NULL; next=GetNextImageInList(next))
  IdentifyImage(next,...);
by magick
2006-03-09T08:37:15-07:00
Forum: Users
Topic: Problem with dashed polyLines
Replies: 2
Views: 15385

The dashed line problem is a known bug and its on the list of things to fix. No time-line for a bug fix just yet.
by magick
2006-03-09T08:35:25-07:00
Forum: Developers
Topic: CMYK resolution
Replies: 0
Views: 14165

You did not provide enough information to be helpful. Lets assume you mean you are not getting proper CMYK colors from an RGB image. If so, you need to use two color profiles. One defining the RGB colorspace and the other for CMYK, perhaps an sRGB and Swop color profile. You can engage these with th...
by magick
2006-03-09T08:32:06-07:00
Forum: Bugs
Topic: Bug in 6.2.6-3's "convert -colors 256 a.png b.png"
Replies: 1
Views: 20032

Try adding -strip to your command line to remove any image profiles from your image and we suspect your final thumbnail image will be at a reasonable size.
by magick
2006-03-08T19:58:31-07:00
Forum: Users
Topic: cygwin binary installation?
Replies: 0
Views: 9253

We will have a new Cygwin binary distribution within 48 hours. Thanks for alerting us to the problem.
by magick
2006-03-08T15:11:13-07:00
Forum: Users
Topic: Installation on GoDaddy... I'm frazzled & frustrated
Replies: 0
Views: 10999

By default, ImageMagick builds for the system directories in /usr/local which you do not have permission to write in. Instead, configure with the --disable-installed option. Add --disable-shared if you don't want to bother with shared libraries. If all else fails, you can try the Fedora pre-compiled...
by magick
2006-03-08T15:06:13-07:00
Forum: PerlMagick
Topic: version 6.22
Replies: 1
Views: 18704

PerlMagick-6.22 is part of the ImageMagick source distribution. Grab ImageMagick-6.2.2-5.tar.gz and unpack. You will find PerlMagick as ImageMagick-6.2.2/PerlMagick.