Website Image Formats: Choosing the right format for the right task. - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T06:05:44Zhttp://stackoverflow.com/feeds/question/392635http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/392635/website-image-formats-choosing-the-right-format-for-the-right-task3Website Image Formats: Choosing the right format for the right task.Andreas Grech2008-12-25T08:36:22Z2009-03-04T14:18:26Z
<p><strong>When designing a website, what do you consider the best image format to use for a particular task?</strong></p>
<p>I always find myself in a dilemma when trying to figure out what format to use for a specific task...like for example, <em>should I use .jpg all round?</em> or, <em>when and why should I use a .png?</em></p>
<p>For example, taking <em><a href="http://www.amazon.com" rel="nofollow">Amazon</a></em>'s website, they use <strong>.jpg</strong> for product images (<a href="http://ecx.images-amazon.com/images/I/51JBu91TjRL._SL500_AA240_.jpg" rel="nofollow">Example</a>), <strong>.gif</strong> for this transparent pixel (<a href="http://g-ecx.images-amazon.com/images/G/01/x-locale/common/transparent-pixel._V42752373_.gif" rel="nofollow">Example</a>) and <strong>.png</strong> for their CSS Sprites (<a href="http://g-ecx.images-amazon.com/images/G/01/gno/images/holiday08/navPackedSprites_v3._V238584356_.png" rel="nofollow">Example</a>)</p>
<p>On the other hand, <a href="http://www.play.com/" rel="nofollow">Play.com</a> use a <strong>.gif</strong> for their website logo (<a href="http://images.play.com/SiteCSS/Play/Live2/img/brand/logo.gif" rel="nofollow">Example</a>), but use <strong>.jpg</strong> for their website products (like Amazon) (<a href="http://images.play.com/bc/920246m.jpg" rel="nofollow">Example</a>) and as far as their main page goes, they dont have any <strong>.png</strong>s on it.</p>
<p><em>So what formats should I use for my websites? and why should I use them?</em></p>
<p><strong>[UPDATE]</strong></p>
<p>Thanks <a href="http://stackoverflow.com/questions/392635/website-image-formats-choosing-the-right-format-for-the-right-task#392641">CruellO</a> for <a href="http://www.killersites.com/articles_2005/theory/imagesInWebPages.jsp" rel="nofollow">this link</a> for explaining the differences, and also <a href="http://stackoverflow.com/questions/392635/website-image-formats-choosing-the-right-format-for-the-right-task#392646">Dustin</a> for giving reasons on what to use.</p>
http://stackoverflow.com/questions/392635/website-image-formats-choosing-the-right-format-for-the-right-task/392641#3926413Answer by CruelIO for Website Image Formats: Choosing the right format for the right task.CruelIO2008-12-25T08:44:28Z2008-12-25T08:44:28Z<p>Try to look at this site
<a href="http://www.killersites.com/articles_2005/theory/imagesInWebPages.jsp" rel="nofollow">http://www.killersites.com/articles_2005/theory/imagesInWebPages.jsp</a></p>
<p>They try to explain what to use when</p>
http://stackoverflow.com/questions/392635/website-image-formats-choosing-the-right-format-for-the-right-task/392646#3926467Answer by Dustin for Website Image Formats: Choosing the right format for the right task.Dustin2008-12-25T08:51:57Z2008-12-25T08:51:57Z<p>Jpegs are for photos. I see jpegs with text in them occasionally and they just look awful. Text is best for text, otherwise use PNG.</p>
<p>If it's not a photo, but you want a graphic of it, use a PNG. A PNG is almost always smaller than the equivalent gif and will not lose quality like a jpg. A png equivalent of a jpg will typically be a lot larger (assuming it's photorealistic). There may be times where this is still desirable.</p>
<p>PNG does allow for 8-bits of transparency, but if you have to support IE, you'll find that they continually refuse to support that correctly. They <em>do</em> support a single bit of transparency in an 8-bit image (essentially the same as gif) as far as I know. There are also numerous hacks to get 8-bit transparency to work in IE. I've never bothered, myself.</p>
<p>In summary:</p>
<ul>
<li>Photos → jpg</li>
<li>!Photos → png</li>
</ul>
http://stackoverflow.com/questions/392635/website-image-formats-choosing-the-right-format-for-the-right-task/610769#6107693Answer by thomasrutter for Website Image Formats: Choosing the right format for the right task.thomasrutter2009-03-04T14:18:26Z2009-03-04T14:18:26Z<p><strong>PNG</strong> should be used when:</p>
<ul>
<li>You need transparency (either 1-bit or alpha transparency)</li>
<li>Lossless compression will work well (such as for a chart or logo, or computer generated image)</li>
</ul>
<p><strong>JPEG</strong> should be used when:</p>
<ul>
<li>Lossless compression will not work well (such as a photograph)</li>
<li>Full color is needed</li>
</ul>
<p><strong>GIF</strong> should be when:</p>
<ul>
<li>PNG is not available, such as on very old software or browsers</li>
<li>Animation is necessary</li>
</ul>
<p>Despite myths to the contrary, PNG outperforms GIF in most aspects. PNG is capable of every image mode of GIF apart from animation, and when using the same image mode, PNG will have better compression due to its superior DEFLATE algorithm compared to LZW. PNG is also capable of additional modes that GIF cannot do, such as 24 bit color, and alpha transparency, but this is where you may run into problems on the web. Alpha transparency has compatibility issues with IE6 that are well documented (though hacks exist to get around).</p>
<p>PNG modes include (this is just a small subset)</p>
<ul>
<li>Palette colour of 2 to 256 colors (like GIF)</li>
<li>Palette colour of 2 to 256 colors, with transparent color (like GIF)</li>
<li>True color (24 bit color)</li>
<li>True color with alpha channel (24 bit color + 8 bit alpha transparency)</li>
</ul>
<p>For best compression in PNG for the web, always use a palette mode. If you find PNG files are larger than the equivalent GIF files, then you're saving the PNG in 24 bit color and the GIF in palette mode (because a GIF is always in palette mode). Try converting to palette mode first.</p>
<p>If you find that your PNG files with transparency aren't working properly in IE6 while your GIF files are, then you are using 24 bit color + alpha transparency in PNG and palette mode with a transparent color with GIF. You will have to make sure that you convert your PNG into a paletted color mode with a transparent color.</p>
<p>PNG also has other modes such as palette color with alpha transparency in the palette. Modes such as this cannot be used in Photoshop.</p>