Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Transparent png on android market for high resolution asset

I'm trying to upload a logo with a transparent background to the android market. For some reason, my png is getting transformed by the market in a way that removes the transparency.

My designer is doing his best to follow the instructions in https://market.android.com/support/bin/answer.py?answer=1078870, but neither of us can figure out what's wrong. As far as we can tell, he's doing alpha in the png, but it doesn't look right.

Here's the png:

enter image description here

And here's what it looks like in the market:

enter image description here

This seems to be a widespread problem in the market, although some apps have managed to get it right. What are we doing wrong?

like image 977
emmby Avatar asked Feb 14 '11 21:02

emmby


People also ask

What is the recommended image format in Android?

YCbCr format used for images, which uses YUYV (YUY2) encoding format. For the android. hardware. camera2 API, the YUV_420_888 format is recommended for YUV output instead.

Which image file format is acceptable for a feature graphic in a Google Play store listing?

Here are the requirements for the Google Play feature graphic: 24-bit . png (no alpha) or . jpeg.

Why should you avoid rounded corners for your app icon in your Google Play store listing?

For example, because Google Play dynamically renders rounded corners and drop shadows for your app icons, you should omit them from your original assets. Follow these APK icon guidelines to learn how to create adaptive launcher icons introduced in Android 8.0 (API level 26).

How do I compress photos without losing quality Android?

Compress Images Using Lit Photo App Download and install the Lit Photo app on your Android phone. Open it and select the “Compress Photos” or “Resize Photos” option. Next, select the image(s) whose size you want to reduce. If you are compressing the image(s), you will see a screen like the one shown in the image below.


1 Answers

In photoshop... File>Save for Web and Devices, ensure that your designer saves it as a PNG-8. As others mentioned in comments, the 32-bits that https://market.android.com/support/bin/answer.py?answer=1078870 is talking about is 32-bits for RGBA (8-bits for each.) I just tried this on mine, which was previously saved as PNG-24, and it seemed to have fixed it.

like image 78
Jon Willis Avatar answered Sep 18 '22 20:09

Jon Willis