ImageMagick deal with gif,has limit?

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
needkane
Posts: 47
Joined: 2014-09-11T02:19:30-07:00
Authentication code: 6789

ImageMagick deal with gif,has limit?

Post 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
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: ImageMagick deal with gif,has limit?

Post 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
snibgo's IM pages: im.snibgo.com
needkane
Posts: 47
Joined: 2014-09-11T02:19:30-07:00
Authentication code: 6789

Re: ImageMagick deal with gif,has limit?

Post 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
Post Reply