Search found 11064 matches

by magick
2006-03-28T14:50:48-07:00
Forum: Users
Topic: HDC to Image (general) beginner question
Replies: 0
Views: 8927

ImageMagick includes the ImageToHBITMAP() method but not a HBITMAPtoImage() method. If you want to write this method and contribute it to ImageMagick for distribution, just post it here and announce you are releasing it under the ImageMagick license.
by magick
2006-03-28T14:46:33-07:00
Forum: Bugs
Topic: Error while Creating a Thumbnail from avi
Replies: 0
Views: 10300

We can reproduce the error you are getting and will patch ImageMagick to hopefully read you image in the future. Unfortunately it may take some time to fix since AVI (and PSD) is a difficult image format to support.
by magick
2006-03-28T14:44:58-07:00
Forum: Users
Topic: monochrome PSD to PNG (or other format)
Replies: 2
Views: 12828

The ImageMagick PSD reader has a number of bugs that we are addressing as time permits. In the mean-time you may need to use some other program (such as Gimp) to convert your image.
by magick
2006-03-28T14:31:42-07:00
Forum: Users
Topic: Response code 1? Is it really and error?
Replies: 6
Views: 21123

In ImageMagick 6.2.6-7 Beta we added a new log statement to display the actual command line being passed to the convert program to make debugging situations like yours easier. All you need to do is add -debug configure to the command line to get this information (and of course use ImageMagick 6.2.6-...
by magick
2006-03-28T14:28:49-07:00
Forum: Users
Topic: problems with Command-line parser?
Replies: 2
Views: 14560

In ImageMagick 6.2.6-7 Beta we added a new log statement to display the actual command line being passed to the convert program to make debugging situations like yours easier. All you need to do is add -debug configure to the command line to get this information (and of course use ImageMagick 6.2.6-...
by magick
2006-03-28T14:26:21-07:00
Forum: PerlMagick
Topic: beginer's question~ about image size
Replies: 2
Views: 20472

Scale() introduces new colors so the image is no longer monochrome, a requirement for Group4 compression. Instead, use Sample() which does not introduce new colors.
by magick
2006-03-28T13:45:12-07:00
Forum: Users
Topic: Response code 1? Is it really and error?
Replies: 6
Views: 21123

The debugging output tells us that the convert program is getting something other than the command line you sent it. Its getting an 'x' and '1200'. You'll need to determine why that is being passed to the convert program.
by magick
2006-03-28T13:22:55-07:00
Forum: Users
Topic: Response code 1? Is it really and error?
Replies: 6
Views: 21123

A return code from the convert program of zero means success, anything else is an error. Make sure the return code is coming from the convert program. Try adding -debug all to see if any exceptions are thrown.
by magick
2006-03-28T13:09:14-07:00
Forum: MagickWand
Topic: upside down image from MagickGetImageBlob on OSX
Replies: 0
Views: 16291

You have a few mistakes in your code. When you call MagickGetImageBlob() you need to specify an image format and depth so instead of unsigned char * data = MagickGetImageBlob(magick_wand,&length); you want MagickSetImageDepth(magick_wand,8); MagickSetImageFormat(magick_wand,"RGB"); dat...
by magick
2006-03-28T12:57:03-07:00
Forum: Users
Topic: problems with Command-line parser?
Replies: 2
Views: 14560

The problem is most likely in the way your shell is interpretting the command line which can be compounded if the shell is being called from a scripting language like PHP. Next up we'll need to know if your calling from a scripting language or a shell. Which shell are you using? Which operating syst...
by magick
2006-03-28T12:51:35-07:00
Forum: Bugs
Topic: Convert JPG RGB->CMYK makes bad JPGs
Replies: 0
Views: 13084

The CMYK JPEG images created by ImageMagick are fine. They follow the JPEG standard. However, Adobe decided to invert the JPEG data in its files so some viewers follow the Adobe standard and others follow the JPEG specification. We try to follow the specifications as much as possible. To fix the pro...
by magick
2006-03-28T12:40:35-07:00
Forum: Users
Topic: extracting channels from a PDF
Replies: 6
Views: 27145

Seems to work for us with ImageMagick-6.2.6-6. We get a black channal that is all zero pixels with this command: convert -colorspace cmyk test.pdf -channel Black -separate test_black.bmp Now all zero pixels may not be what you want but that is what Ghostscript is giving us. As we suggested earlier, ...
by magick
2006-03-28T12:19:30-07:00
Forum: Users
Topic: problems with Command-line parser?
Replies: 2
Views: 14560

Try escaping the quotes by preceeding the quotes with a backslash.
by magick
2006-03-28T12:13:37-07:00
Forum: Bugs
Topic: Problems with GIFs in Version 6.2.6
Replies: 0
Views: 12357

We can reproduce the problem you posted and should have a fix within the next few days. Thanks for the problem report.
by magick
2006-03-28T10:37:04-07:00
Forum: PerlMagick
Topic: Infos from the Image width "identify"
Replies: 0
Views: 14685

Looks like you may have an older version of PerlMagick that does not support the Identify() method. Try use Image::Magick; my $image; my $x; $image = Image::Magick->new; $image->Read('logo'); $x = $image->Write('logo.jpg'); print $x; If that fails, PerlMagick may not be installed properly.