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