Android supports three image formats with this rating:

PNG (preferred), JPG (acceptable) and GIF (discouraged). Source: http://developer.android.com/guide/topics/resources/drawable-resource.html#Bitmap

Why is JPG only listed as acceptable? Isn't JPG a better format for images without transparency because they take less space than PNG:s?

Or does PNG behave so much better during runtime that it is worth storing full screen background images etc. as PNG:s even if they tend to make the APK much bigger?

I'm not very satisfied with many apps containing a lot of graphics eating the space on my Internal storage so it's getting full all the time. And my guess is that they are badly optimized in that sense by using PNG when they could use JPG because the developer guide says PNG is preferred without explaining why. Can anyone tell if I'm correct when saying JPG should be used for non-transparent images?

link|improve this question

75% accept rate
It is a good question. I'm sure there are reasons for it, but they lie in details that are hidden from us. In general, I think it is good for an embedded OS to use one image format as native as it has to deal with less variety and guesswork. JPEG does have a better compression scheme, but like PNG, there are many. JPEG2000 has better quality than regular JPEG and so on. However, so does PNG. One thing I know for sure about PNG format is that it does not have to use an alpha channel. There are purely RGB PNG codecs and those are natively supported in Android as well. – Phonon Mar 11 '11 at 15:29
feedback

2 Answers

up vote 2 down vote accepted

This article

http://mobile.tutsplus.com/tutorials/mobile-design-tutorials/mobile-design_png-or-jpg/

is more focused on iOS development, but it seems to agree with what you suspected about JPGs being fine for non-transparent images. PNGs are lossless, so they have that advantage, which is probably why they are recommended, but if you can live with some loss in exchange for size optimization, then JPGs seem fine to me.

link|improve this answer
Good article, gives me better understanding for Android as well. Hope more devs use .jpg when suitable. Large app files filling Android internal memory aren't that nice! – BobbyJ Mar 17 '11 at 15:41
The article is terrible in places: "Color and Contrast – The colors in the .jpg are richer, more saturated. The .png looks washed out." That has nothing to do with the format and everything to do with Photoshop export filters. – Steve-o Mar 28 '11 at 7:55
feedback

PNGs are lossless while JPEGs are lossy. I would expect PNGs to scale slightly better, but if you can live with the JPEG quality it seems appropriate/acceptable.

link|improve this answer
Also, PNGs support transparency. – Poldie Mar 11 '11 at 20:11
It's more likely due to many designers not understanding that lossy compression for graphics, c.f. photography, looks really bad. – Steve-o Mar 28 '11 at 8:01
feedback

Your Answer

 
or
required, but never shown

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