Page 1 of 1

ImageMagick deal with gif,has limit?

Posted: 2015-03-05T03:09:31-07:00
by needkane
Hi:
There is a gif which imagemagick can't convert it.
Image: http://s3-us-west-2.amazonaws.com/qiniu-bs/3000.gif

I want to thumbnail it
Command : convert 3000.gif -thumbnail 200x +repage result.gif

Can you try it

Re: ImageMagick deal with gif,has limit?

Posted: 2015-03-05T03:55:58-07:00
by snibgo
For animated GIFs, I suggest you read the documentation. See "animation" in http://www.imagemagick.org/Usage/

This works fine:

Code: Select all

convert 3000.gif -layers coalesce -resize 200x -layers optimize t.gif

Re: ImageMagick deal with gif,has limit?

Posted: 2015-03-16T20:04:01-07:00
by needkane
snibgo wrote:For animated GIFs, I suggest you read the documentation. See "animation" in http://www.imagemagick.org/Usage/

This works fine:

Code: Select all

convert 3000.gif -layers coalesce -resize 200x -layers optimize t.gif

Sir,I need your help
viewtopic.php?f=3&t=27203