Search found 1570 matches

by dlemstra
2013-08-19T14:07:10-07:00
Forum: Bugs
Topic: identify -verbose seg faults on PSD files
Replies: 10
Views: 9422

Re: identify -verbose seg faults on PSD files

With ImageMagick 6.8.6-8 on Windows 7 I can run identify -verbose house_01.psd without any problems.
by dlemstra
2013-08-19T08:16:21-07:00
Forum: Bugs
Topic: Affine Transformation Crashing
Replies: 5
Views: 6800

Re: Affine Transformation Crashing

Can you place your image online so we can use it for testing?
by dlemstra
2013-08-19T00:13:20-07:00
Forum: Users
Topic: Magick++, VC++ 6.0, and Windows XP
Replies: 13
Views: 13317

Re: Magick++, VC++ 6.0, and Windows XP

Would you mind contacting me trough the forum so we can swap e-mails? I don't have VC++ 6.0 so I cannot tests any of the changes I will post and instead of spamming the forum I rather just spam you :). We should however post updates here to inform others what is happening.
by dlemstra
2013-08-18T15:06:31-07:00
Forum: Users
Topic: Magick++, VC++ 6.0, and Windows XP
Replies: 13
Views: 13317

Re: Magick++, VC++ 6.0, and Windows XP

Please use the latest version of ImageMagick 6. Feel free to checkout from the SVN repsitory: https://subversion.imagemagick.org/subv ... -Windows-6.
by dlemstra
2013-08-18T04:00:36-07:00
Forum: Users
Topic: Magick++, VC++ 6.0, and Windows XP
Replies: 13
Views: 13317

Re: Magick++, VC++ 6.0, and Windows XP

You cannot use the binaries that are compiled with Visual Studio 2010 with your VC++ 6.0 program. You should really compile the source of ImageMagick with VC++ 6.0. Or if you project is not a commercial project you could switch to the latest Visual C++ Express edition. If you want you can contact me...
by dlemstra
2013-08-17T15:26:40-07:00
Forum: Bugs
Topic: Animated GIF can't be opened
Replies: 7
Views: 11664

Re: Animated GIF can't be opened

You should first 'coalesce' the image. ./convert 1.gif -coalesce -resize 100x100 res.gif And if you also add '-layers optimize' your file size will be reduced. ./convert 1.gif -coalesce -resize 100x100 -layers optimize res.gif The result is not that great. Might be an rounding issue in the coalesce ...
by dlemstra
2013-08-17T12:35:41-07:00
Forum: Bugs
Topic: Magick::readImages crashes
Replies: 5
Views: 16365

Re: Magick::readImages crashes

I am unable to reproduce this with the latest version of ImageMagick. Can you try to see if that will fix your problem?
by dlemstra
2013-08-16T23:23:56-07:00
Forum: Bugs
Topic: Performance regression in 6.5.9?
Replies: 2
Views: 7349

Re: Performance regression in 6.5.9?

Without that fix the quality of the image would be '0' instead of '96'. And it looks like the png coder will think that the quality is 75 instead of 96 and that will result in a different compression. I haven't tested this yet but that really looks like unwanted behavior. Edit: The png encoder reall...
by dlemstra
2013-08-16T11:27:18-07:00
Forum: Magick++
Topic: How to Get Image Artifact values from PSD Image???
Replies: 2
Views: 9237

Re: How to Get Image Artifact values from PSD Image???

The Image->artifact method was added to Magick++ in ImageMagick 6.8.6-8.
by dlemstra
2013-08-16T01:51:58-07:00
Forum: Magick++
Topic: why readImages() function does not catch the exception?
Replies: 2
Views: 10483

Re: why readImages() function does not catch the exception?

Are you using the same version of ImageMagick on both servers?
by dlemstra
2013-08-11T14:38:59-07:00
Forum: Bugs
Topic: “-define jpeg:extent=XXkb” bug in 6.8.5?
Replies: 10
Views: 14490

Re: “-define jpeg:extent=XXkb” bug in 6.8.5?

I have committed a fix to the SVN repository, this will be fixed in ImageMagick-6.8.6-9. Thanks for all the info, made it quite easy to track down the bug.
by dlemstra
2013-08-10T09:41:16-07:00
Forum: Fred's Scripts
Topic: Notch on Cygwin -Bug report
Replies: 6
Views: 16996

Re: Notch on Cygwin -Bug report

if [ "$right" != "0" ]; then right=`convert xc: -format "%[fx:2*$right]" info:` masking="-strokewidth $right -draw \"line $lastcol,0 $lastcol,$lastrow\"" fi if [ "$bottom" != "0" ]; then bottom=`convert xc: -format "%[fx:2*$...
by dlemstra
2013-07-27T05:40:11-07:00
Forum: IMagick
Topic: Imagick Ubuntu
Replies: 4
Views: 10153

Re: Imagick Ubuntu

It looks like you are not specifying the correct path to your image. You should try the absolute path instead of the relative path to your image.
by dlemstra
2013-07-25T01:06:37-07:00
Forum: Bugs
Topic: -modulate in HCLp
Replies: 4
Views: 8162

Re: -modulate in HCLp

I am having the same issue with the fix for this: viewtopic.php?f=3&t=20615. It looks like the recent changes did not make it into the windows build.
by dlemstra
2013-07-23T13:32:39-07:00
Forum: Bugs
Topic: "Improper call to JPEG library in state" grey Old JPEG TIFF
Replies: 7
Views: 25037

Re: "Improper call to JPEG library in state" grey Old JPEG T

I am trying to load an Old JPEG TIFF file on windows with ImageMagick 6.8.6-6 but I am receiving the 'Improper call to JPEG library' message. This issue was fixed in revision 2612 but it seems the change was reverted in revision 6859 . Adding the following line from revision 2612 seems to fix my pro...