Page 1 of 1

Reduce gif size at least back to original size

Posted: 2013-07-12T06:58:57-07:00
by Somebi
I have a problem with the converted image size. It's 2x times greater than original and it's dimensions are lesser!

This is the result:
http://oi40.tinypic.com/2nrox3m.jpg

This is original:
http://oi39.tinypic.com/2h35s0g.jpg

This is the command line i was using:

convert /img.gif -coalesce -resize x220 /img2.gif

Original size is 995kb and result size is 2540kb!

How to reduce the size?

Re: Reduce gif size at least back to original size

Posted: 2013-07-12T07:32:03-07:00
by snibgo
As http://www.imagemagick.org/script/comma ... p#coalesce says, you might try "-layers optimize".

Code: Select all

convert lavaOrig.gif -coalesce -resize x220 -layers optimize l2.gif
This gives a smaller size for me.

Re: Reduce gif size at least back to original size

Posted: 2013-07-13T09:17:29-07:00
by Somebi
After this, gif animation is not working.

Re: Reduce gif size at least back to original size

Posted: 2013-07-13T09:32:39-07:00
by snibgo
It works for me. IM v6.8.6-0 in Windows 7.

What are you using?

Re: Reduce gif size at least back to original size

Posted: 2013-07-14T05:06:19-07:00
by Somebi
Have you tried using my, provided gif images? I'm using Ubuntu via ssh.

Re: Reduce gif size at least back to original size

Posted: 2013-07-14T05:08:16-07:00
by Somebi
Huh interesting... Now it's working. Probably magic was in the right options positioning... Thanks mate.