Search found 11064 matches

by magick
2006-04-07T07:40:52-07:00
Forum: Bugs
Topic: 1-bit TIFFs render with inverted colors - sometimes
Replies: 2
Views: 16659

The TIFF conversion worked fine for us with ImageMagick 6.2.6-8 the current release. The PNG coder is fixed in ImageMagick 6.2.7 Beta. Thanks for bringing this problem to our attention.
by magick
2006-04-07T07:38:10-07:00
Forum: Users
Topic: Text drawn using Tahoma font does not match the system font
Replies: 1
Views: 11696

Post a URL to your original image, the image annotated with the tahoma.ttf font, and the image produced by Gimp. We will try to reproduce the problem and account for the differences in the font. ImageMagick and Gimp both use the Freetype rendering engine so it should produce identical results.
by magick
2006-04-06T17:22:39-07:00
Forum: Users
Topic: TIF conversion
Replies: 1
Views: 10283

Post a URL to your TIFF image here. We need to reproduce the problem before we can offer any advice.
by magick
2006-04-06T17:21:20-07:00
Forum: Users
Topic: 0xC0000005: Access violation writing location
Replies: 1
Views: 11847

Variable inPixel can be NULL if your image is an odd height or width. Either check for this condition and bail or use num_row-1 and num_cols-1 in your loops.
by magick
2006-04-06T17:09:49-07:00
Forum: Users
Topic: -background not working
Replies: 0
Views: 8390

The -background option is a setting not an operator. Try this instead:
  • convert a.png -fill red -draw "color 0,0 reset" a.jpg
by magick
2006-04-06T17:01:42-07:00
Forum: Bugs
Topic: 1-bit TIFFs render with inverted colors - sometimes
Replies: 2
Views: 16659

You found a bug in the PNG coder. The conversion seems to work fine for other formats such as MIFF, GIF, PBM, etc. We will apply a patch to ImageMagick 6.2.7 Beta. The only workaround we can think of is to compensate for the inversion with the -negate option.
by magick
2006-04-06T09:29:44-07:00
Forum: Bugs
Topic: v6.2.6 PSD conversion with *.psd[0]
Replies: 9
Views: 72183

A patch will be available tommorrow in ImageMagick 6.2.7-0 Beta. We restored the behavior such that the first image will always be the pre-combined layer.
by magick
2006-04-06T07:31:41-07:00
Forum: MagickWand for PHP
Topic: mac osX server 10.4 install magickwand for php Error
Replies: 0
Views: 16252

In the future post to only one forum.

MagickToMime() is exported in the libMagick library. Not sure why but it looks like you build is missing -lMagick which would include the libMagick library and resolve the missing symbol.
by magick
2006-04-06T07:28:07-07:00
Forum: Users
Topic: Montage always creates 48bpp tiff images
Replies: 0
Views: 8838

Try adding -depth 8 to your command line to force 8 bits-per-pixel. You might also try upgrading to the latest release of ImageMagick 6.2.6-8.
by magick
2006-04-05T21:12:32-07:00
Forum: Users
Topic: caption text on transparent background
Replies: 1
Views: 11908

Add -background none near the beginning of the command line or leave xc:none and add -composite near the end of the command line.
by magick
2006-04-05T19:17:34-07:00
Forum: Users
Topic: caption text on transparent background
Replies: 1
Views: 11908

Remove xc:none from your command line.
by magick
2006-04-05T15:41:52-07:00
Forum: Bugs
Topic: Bug in version.h ?
Replies: 1
Views: 11717

Luckily very few people use the 32 bits-per-pixel version of ImageMagick. Fixed in ImageMagick 6.2.7 Beta. Thanks.
by magick
2006-04-05T13:58:38-07:00
Forum: Users
Topic: failed Install from source on Solaris 8
Replies: 2
Views: 10277

Try
  • cd ImageMagick-6.2.6
    ./configure --disable-shared
    make clean
    make
    make -k -i install
by magick
2006-04-05T13:57:36-07:00
Forum: Users
Topic: Portability Problem (Windows)
Replies: 2
Views: 14826

Did you build ImageMagick from source or are you using the pre-compiled binaries? If the latter, it will always check the Windows registry since it was built with UseInstalledMagick defined. ImageMagick will look in the execution path of the program for any dll's to load only if UseInstalledMagick i...
by magick
2006-04-05T13:46:05-07:00
Forum: Bugs
Topic: Can't convert to LZW compressed TIFF
Replies: 0
Views: 9955

We have a patch for the problem you posted. We'll try to get updated Windows binaries out in the next few weeks.