Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create from 3 JPG photos a GIF file (I am doing that in Java). I have to create GIF file that must be maximum 35kb size.

The first step that I am doing is: "convert -extent 280X300 -dispose Background -delay 100 -loop 0 1.jpg 2.jpg 3.jpg my.gif" The result I am getting is 109KB file size.

The second step that I am doing is: "convert my.gif +dither -layers Optimize -colors 32 smallMy.gif" The result I am getting is 56KB file size. This size is still to big for me, as well as the quality of the GIF dropped significantly. I tried to use "-compress LZW", but it didn't help me.

I am using ImageMagick-6.8.0-Q16 version. The size of the JPG files are: 9KB, 19KB, 7KB.

Thanks for the help

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.