Search found 19 matches

by carol_sun
2009-11-20T00:51:01-07:00
Forum: MagickStudio
Topic: Which resize filter is used when resizing a gif image?
Replies: 1
Views: 13963

Which resize filter is used when resizing a gif image?

MagickStudio can resize a gif image keeping it movie. It loop though the current image sequence resizing all images. I want to know that which resize filter is used by MagickStudio when doing this? I used point filter to resize each frame, it didn't work well all of the time. Did i lose some step? l...
by carol_sun
2009-11-18T20:43:56-07:00
Forum: Users
Topic: How to keep the picture movie after resizing it
Replies: 1
Views: 4070

Re: How to keep the picture movie after resizing it

NOTE this is not normally the forum I would write in, but I know about this. While the command line will loop though the current image sequence resizing all images. Other API's do not. You will need to loop though reach image and resize it. WARNING: GIF animation sequences need to be coalesced (lay...
by carol_sun
2009-11-08T18:43:25-07:00
Forum: Users
Topic: How to keep the picture movie after resizing it
Replies: 1
Views: 4070

How to keep the picture movie after resizing it

I use the ImageMagick Studio web interface to resize a GIF image file, it works successfully. But if I use Magick++ to resize it, after resizing it, it's still a gif imgage file indeed, but it become static. It seems only the first frame has been decoded . Is there something wrong with my code? Magi...
by carol_sun
2009-11-06T01:41:56-07:00
Forum: MagickWand
Topic: How to keep the picture movie after resizing it
Replies: 1
Views: 8475

How to keep the picture movie after resizing it

I want to resize a GIF image file use the code as follow. After resizing it, it's still a gif imgage file indeed, but it become static. It seems only the first frame has been decoded . Is there something wrong in my code? Magick::Blob blob(in_clone, insize); //'in_clone' is original image file data ...