Search found 5 matches
- 2012-06-18T04:49:15-07:00
- Forum: MagickWand
- Topic: MagickFlattenImages stopped working as expected
- Replies: 4
- Views: 18970
Re: MagickFlattenImages stopped working as expected
Thanks Anthony. You were most helpful.
- 2012-05-31T03:08:08-07:00
- Forum: MagickWand
- Topic: MagickFlattenImages stopped working as expected
- Replies: 4
- Views: 18970
Re: MagickFlattenImages stopped working as expected
Here is a Python sample code: from pythonmagickwand.image import Image icon = Image('/tmp/image.jpg') icon.thumbnail(100, 100) flattenIcon = icon.flatten() flattenIcon.save('/tmp/icon_image.jpg') Sample file can be found here: https://docs.google.com/open?id=0B5qM0bTXFu9ESk1nOE0yQzNLQWM save it to ...
- 2012-05-15T03:28:56-07:00
- Forum: MagickWand
- Topic: MagickFlattenImages stopped working as expected
- Replies: 4
- Views: 18970
MagickFlattenImages stopped working as expected
Hello, I am using MagickWand in my python application (using pythonmagicjwand). One thing that my application does is taking an image, resize it and saves the resized image to disk. Since I also works with PNG files which might have transparency in them, after the resize, I am setting the white ...
- 2011-06-18T01:41:02-07:00
- Forum: Bugs
- Topic: PSD file save causes segmentation fault
- Replies: 3
- Views: 7838
Re: PSD file save causes segmentation fault
here is a link to the file:
https://docs.google.com/leaf?id=0B5qM0b ... y=CLu1krEK
the command is:
convert 1.psd -resize 25% 2.psd
https://docs.google.com/leaf?id=0B5qM0b ... y=CLu1krEK
the command is:
convert 1.psd -resize 25% 2.psd
- 2011-06-14T03:43:15-07:00
- Forum: Bugs
- Topic: PSD file save causes segmentation fault
- Replies: 3
- Views: 7838
PSD file save causes segmentation fault
I am using imagemagick 6.6.7 (latest build of today 06/14/2011) in my application to resize psd files. at there are cases in which when I saving the image to disk I get segmentation fault. Trying the resize via convert halt also generates segmentation fault. I can send this psd file when necessary ...