Cropping GIF produces 'animated' gif
Posted: 2010-01-15T22:34:37-07:00
I have a single frame gif image (1000 pixels wide) and I want to crop it to get just the bottom 1000x60 pixel area.
First of all, this is the gif I start with:
I run the following command:
The resulting image:
My version information:
Why in the world are there 3 frames? How do I get it to crop and create a single frame gif? (The image does not render using Windows Picture and Fax Viewer)
Thanks a lot!
First of all, this is the gif I start with:
Code: Select all
$ identify ABCA1.gif
ABCA1.gif GIF 1000x141 1000x141+0+0 8-bit PseudoClass 256c 9.33kb
Code: Select all
$ convert ABCA1.gif -gravity South -crop 1000x60 +repage a.gif
Code: Select all
$ identify a.gif
a.gif[0] GIF 1000x60 1000x60+0+0 8-bit PseudoClass 256c 9.97kb
a.gif[1] GIF 1000x60 1000x60+0+0 8-bit PseudoClass 256c 9.97kb
a.gif[2] GIF 1000x21 1000x60+0+0 8-bit PseudoClass 256c 9.97kb
Code: Select all
$ convert -version
Version: ImageMagick 6.4.5 2009-06-04 Q16 OpenMP http://www.imagemagick.org
Copyright: Copyright (C) 1999-2008 ImageMagick Studio LLC
Thanks a lot!