Hi,
I've been tottally messing up animations that have different frame sizes.
When I resize, I'm using:
mogrify -resize 100x100\! image.gif
However, some frames are only partial, and I really want it just to scale the whole image, not to resize each frame. Is there an easy way to do this with out having to calculate and resize each frame individually? is there a way to normalize the frames so that they are all the same size (ie. padding them out or something) so that this and other operations would work?
(I'm also messing up animations when some of the frames have offsets, because I'll tear apart the animation, and I can't reconstruct it properly)
resizing animations (different sized frames)
Try
You might need to use convert instead of mogrify
Glenn
Code: Select all
mogrify -coalesce -resize 100x100 -deconstruct file.gif
Code: Select all
convert in.gif -coalesce -resize 100x100 -deconstruct out.gif