最終更新:2013-11-21 (木) 01:45:10 (3810d)  

android.graphics.Bitmap.Config
Top / android.graphics.Bitmap.Config

Bitmap.Config.ALPHA_8?Each pixel is stored as a single translucency (alpha) channel.
Bitmap.Config.ARGB_4444?This field was deprecated in API level 13. Because of the poor quality of this configuration, it is advised to use ARGB_8888 instead.
Bitmap.Config.ARGB_8888Each pixel is stored on 4 bytes.
Bitmap.Config.RGB_565?Each pixel is stored on 2 bytes and only the RGB channels are encoded: red is stored with 5 bits of precision (32 possible values), green is stored with 6 bits of precision (64 possible values) and blue is stored with 5 bits of precision.