When you run Google's PageSpeed plugin for Firebug/Firefox on a website it will suggest cases where an image can be losslessly compressed, and provide a link to download this smaller image.

For example:

This applies across both JPG and PNG filetypes (I haven't tested GIF or others.)

Note too the Flickr thumbnails (all those images are 75x75 pixels.) They're some pretty big savings. If this is really so great, why aren't Yahoo applying this server-side to their entire library and reducing their storage and bandwidth loads?

Even Stackoverflow.com stands for some very minor savings:

I've seen PageSpeed suggest pretty decent savings on PNG files that I created using Photoshop's 'Save for Web' feature.

So my question is, what changes are they making to the images to reduce them by so much? I'm guessing there are different answers for different filetypes. Is this really lossless for JPGs? And how can they beat Photoshop? Should I be a little suspicious of this?

link|improve this question

feedback

3 Answers

Take a look at http://code.google.com/speed/page-speed/docs/payload.html#CompressImages which describes some of the techniques/tools.

link|improve this answer
Thanks for the link. I guess I'm looking really to learn more about what kinds of redundancies there are in image files that can be stripped away if filesize is your primary concern. I know that info is out there on the web, I just wanted to have a nice place to collate it here on SO. – Drew Noakes Mar 27 '11 at 19:10
feedback

It's a matter of trading encoder's CPU time for compression efficiency. Compression is a search for shorter representations, and if you search harder, you'll find shorter ones.

There is also a matter of using image format capabilities to the fullest, e.g. PNG8+a instead of PNG24+a, optimized Huffman tables in JPEG, etc.

Photoshop doesn't really try hard to do that when saving images for the web, so it's not surprising that any tool beats it.

See ImageOptim (lossless) and ImageAlpha (lossy) for smaller PNG files and JPEGmini (lossy) for better JPEG compressor.

link|improve this answer
feedback

"When you run Google's PageSpeed plugin for Firebug/Firefox on a website it will suggest cases where an image can be losslessly compressed, and provide a link to download this smaller image."

This is not true at all. The compressed image is not provided at all! Liar liar pants on fire! The only thing provided is a message that says "losslessly compressing this image could save you blah blah blah".

Firefox squiggles the word "Losslessly", btw. Perhaps it's not a word?

link|improve this answer
1  
Works for me in both Firefox and in Chrome. Are you sure you're looking in the right place? – Drew Noakes Feb 23 at 10:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.