Search found 11064 matches

by magick
2006-01-30T19:51:18-07:00
Forum: Bugs
Topic: Group4 compression doesn't work
Replies: 7
Views: 49848

We can reproduce the problem and should have a fix within the next few days. Thanks for the problem report.
by magick
2006-01-29T18:55:52-07:00
Forum: Bugs
Topic: Group4 compression doesn't work
Replies: 7
Views: 49848

Add -monochrome to your command line. Group4 compression will not work unless the image is bilevel.
by magick
2006-01-26T09:21:36-07:00
Forum: Bugs
Topic: SplayTree / multithreaded troubles
Replies: 3
Views: 26509

You probably can grab ImageMagick-6.2.6/magick/semaphore.c and replace it in 6.2.5. Let us know if it fixes the problem.
by magick
2006-01-26T08:46:48-07:00
Forum: Users
Topic: Dital Negative problem - get thumbnail size only
Replies: 2
Views: 20734

We leverage the TIFF delegate library to read DNG images. It apparently only sees one image in your file although it appears there is more than one. Looks like more work is needed before ImageMagick fully supports the Digital Negative format.
by magick
2006-01-26T08:39:27-07:00
Forum: Users
Topic: Unattended install of ImageMagick (w/ PerlMagick) on Windows
Replies: 0
Views: 18208

If you grab the Windows source distribution of ImageMagick, it includes the INNO scripting we use to build the installed version of ImageMagick Windows binaries. Between it and the documentation of the INNO installer you should be able to find the information you need.
by magick
2006-01-26T08:34:55-07:00
Forum: Bugs
Topic: SplayTree / multithreaded troubles
Replies: 3
Views: 26509

You did not mention which version of ImageMagick you are using. ImageMagick 6.2.6 has a patch to the thread locking code that might fix the problem you are having. If you are running ImageMagick 6.2.6, let us know and we will investigate further. It would be helpful to have a small code snippet we c...
by magick
2006-01-25T21:39:14-07:00
Forum: Bugs
Topic: 32-bit .tga, alpha channel disappears? identify.c bug?
Replies: 1
Views: 25548

It appears your TARGA images have an inverted alpha channel. According to the TARGA specification, an alpha channel of 0 is fully transparent and 255 is fully opaque. ImageMagick uses the negation of this (0 is fully opaque) so we subtract the TARGA alpha value from 255.
by magick
2006-01-25T08:27:30-07:00
Forum: Bugs
Topic: ArrayTest.vbs throws an exception
Replies: 1
Views: 14828

We will try the array test in the next few days and see if we can reproduce the problem and if so, fix it.
by magick
2006-01-23T12:57:55-07:00
Forum: PerlMagick
Topic: Postscript to PDF
Replies: 3
Views: 33041

Turns out we could process multi-page Postscript into PDF. We'll look into patching ImageMagick 6.2.6.-1 to support this feature.
by magick
2006-01-23T12:06:17-07:00
Forum: PerlMagick
Topic: Postscript to PDF
Replies: 3
Views: 33041

We spoke too soon. Direct Postscript to PDF conversion only takes place for single page Postscript documents. We used a multi-page document in our tests. With a single page EPS document, it is converted properly to PDF. Can you try ImageMaick 6.2.6, the latest release and see if you get the expected...
by magick
2006-01-23T11:56:28-07:00
Forum: PerlMagick
Topic: Postscript to PDF
Replies: 3
Views: 33041

We can reproduce the problem you posted and will have a patch in ImageMagick 6.2.6-1 Beta within a few days. 6.2.6-1 is scheduled for release in just a few weeks.
by magick
2006-01-23T09:04:04-07:00
Forum: Bugs
Topic: v6.2.6 PSD conversion with *.psd[0]
Replies: 9
Views: 72229

ImageMagick 6.2.6-1 Beta permits you to get the precombined layer in PSD images with this option: -define psd:precombined-layer ImageMagick 6.2.6-1 is available here: [url]ftp://ftp..imagemagick.org/pub/ImageMagick/beta[/url]. ImageMagick 6.2.6-1 will be officially released in the next week or two.
by magick
2006-01-23T08:12:52-07:00
Forum: Bugs
Topic: ImageMagick 6.2.5.5 fails to link with GraphViz 2.6
Replies: 0
Views: 15698

Try ImageMagick 6.2.6, the current release. If you continue to have problems linking to GraphVis with 6.2.6, let us know.
by magick
2006-01-19T20:12:48-07:00
Forum: Users
Topic: Visual Studio version?
Replies: 7
Views: 29082

Ok, an ImageMagick user bought us a copy of Visual Studio 2005 (feel free to identify yourself if you want). ImageMagick compiled with only one patch to IMDisplayDoc.cpp and one patch to configure.cpp. We now need to see if we need to conditionally make the changes so ImageMagick will build with Vis...
by magick
2006-01-17T09:08:48-07:00
Forum: Users
Topic: Color Problem while converting CMYK EPS to jpg
Replies: 1
Views: 21379

We get good results with this command: convert -density 400 shoe.eps -colorspace rgb -resize 630x428 -strip -quality 75 shoe.jpg With ImageMagick 6.2.6 you can use this command as well to bypass using profiles: convert -density 400 -colorspace rgb shoe.eps resize 630x428 -strip -quality 75 shoe.jpg