I need help.
Edit
Was allowed to make files public.
This animated gif is produced by Fireworks. It has 28 KB and looks gread
This animated miff is produced by ImageMagick. I can only reduce it to a 64 KB GIF, but this is to much. It needs to get near 30 KB.
Can someone help ?!
Made a bannergenerator for my work, that uses ImageMagick.
- * 5 different banners are created.
* All having same elements with different arrangement.
* Width and Height also vary ('120x240','120x600','300x250','468x60','728x90')
* With 8 Frames min and 11 Frames max.
* Smallest size without optimization is 80 KB, biggest size is 120 KB
* Best found optimization technique reduces smallest to 52 KB, biggest to 68 KB looking really crappy (edges are zickzacked)
When I use Fireworks I can easily reduce the biggest banner to 28 KB with 32 colors but still a wunderfull quality. Well and this is my bos's wish, or at least 40 KB, cause this banners will be pulled very often in future. But I can only reach 80 KB without making the quality to bad.
here are the techniques I tried.
- * "convert $completeMiff -deconstruct $optimizedFile"
* "convert $completeMiff -deconstruct -layers optimize $optimizedFile_2"
* "convert $completeMiff -matte -deconstruct -layers optimizePlus $optimizedFile_3"
* "convert $completeMiff -deconstruct -layers optimize -matte -colors 31 $optimizedFile_4"
* "convert $completeMiff -deconstruct -layers optimize -matte \( -clone 0--1 -background none +append -quantize transparent -colors 64 -unique-colors -write mpr:cmap +delete \) -map mpr:cmap $optimizedFile_5"
* "convert $completeMiff -deconstruct -layers optimize -matte \( -clone 0--1 -background none +append -quantize transparent -colors 32 -unique-colors -write mpr:cmap +delete \) -map mpr:cmap $optimizedFile_6"
PS:
Only two weeks experience with (pure) ImageMagick so far