Over-inflated 100x MNG creation with convert 6.0.6

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
mtodorov3_69

Over-inflated 100x MNG creation with convert 6.0.6

Post by mtodorov3_69 »

Hi, all!

I have tried the simple sequence like this to create MNG logo with ImageMagick:

% convert -d 5 model-*.png ~/public_html/grf-logo/grf-logo.mng

The result is convincing, and can be seen on:

http://www.grf.hr/~mtodorov/grf-logo/grf-logo.mng

BUT!!!!!! It is 3 MB huge for an image 640x480. It would be normal if the image isn't
mostly static, with only a small rotor rotating (see image).

Comparison:

Animated GIF of the same image sequence is 35K long!! See for yourself:

http://www.grf.hr/~mtodorov/grf-logo/grf-logo.gif

I would keep the GIF logo then , because 3 MB for a logo is not acceptable,
but alas the colors in animated GIF are terrible, and there seem to be no remedies.

Was there som eenhancement in MNG creation since convert 6.0.6 and do you by chance know of some MNG compression or optimizer tool?

I think having 100x big image is definitely a bug, or no attempt is made to recognize patterns or parts of image(s) that repeat or stay same in sequence.

Thank you, otherwise the program is great!

MIrsad
User avatar
anthony
Posts: 8883
Joined: 2004-05-31T19:27:03-07:00
Authentication code: 8675308
Location: Brisbane, Australia

Post by anthony »

The whole image should not be needed for a MNP animation, just as the whole image is not needed for a GIF animation.

Hmmm
convert grf-logo.mng -deconstruct -set delay 20 grf-logo_2.mng

Produces a much smaller image, though still larger than GIF. The size may be reduced further by playing with the -quality settings.

NOTE: for PNG and PNG quality is not just a number from 0 to 99, it is two seperate digits with two separte meanings.

My movie player even plays it fine too.

NOTE: This is basic frame optimization. I know the PNG and MNG both allow a image offset so I know they handle sub-frame overlays. However I do not know if MNG understands GIF dispose methods or anything else about that animation format. As such I do not recoment you use the new GIF "-layer optimize" methods with MNG animations at this time.

If anyone out there can enlighten me, I would be happy to hear from you.

For more info in Animations (that I so far have developed for IM use) see
http://www.cit.gu.edu.au/~anthony/graph ... im_basics/
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
Post Reply