Search found 4 matches

by hiigara
2011-12-20T13:15:04-07:00
Forum: MagickWand
Topic: Create several thumbnails from a single original image
Replies: 2
Views: 17413

Re: Create several thumbnails from a single original image

Thanks. CloneMagickWand is exactly what I was looking for.
by hiigara
2011-12-18T18:26:36-07:00
Forum: MagickWand
Topic: Create several thumbnails from a single original image
Replies: 2
Views: 17413

Create several thumbnails from a single original image

I want to create thumbnails of different sizes from the same source image. I am able to create a single thumbnail with this code:


g_Magickwand = NewMagickWand();
MagickReadImage( g_Magickwand, "test.jpg" )
MagickResizeImage( g_Magickwand, "150", "100", LanczosFilter, 1.0 );
MagickWriteImage( g ...
by hiigara
2011-12-18T17:56:03-07:00
Forum: MagickWand
Topic: MagickResizeImage fails. How to get error details?
Replies: 2
Views: 15838

Re: MagickResizeImage fails. How to get error details?

Thank you! I fixed the problem.
by hiigara
2011-12-18T14:08:53-07:00
Forum: MagickWand
Topic: MagickResizeImage fails. How to get error details?
Replies: 2
Views: 15838

MagickResizeImage fails. How to get error details?

Hello. I am a magickwand beginner.
This code fails in MagickResizeImage. The message "MagickResizeImage failed!" is printed in my log.
I would like to get an error detail on why MagickResizeImage is failing. How can I do that?
Thanks.


if( MagickReadImage( g_Magickwand, _fb ) == MagickTrue ...