get Bytes Per Pixel in Bitmap - Android Graphics

Android examples for Graphics:Bitmap Byte Array

Description

get Bytes Per Pixel in Bitmap

Demo Code


//package com.java2s;
import android.graphics.Bitmap;

public class Main {
    static int getBytesPerPixel(Bitmap.Config config) {
        if (config == Bitmap.Config.ARGB_8888) {
            return 4;
        } else if (config == Bitmap.Config.RGB_565) {
            return 2;
        } else if (config == Bitmap.Config.ARGB_4444) {
            return 2;
        } else if (config == Bitmap.Config.ALPHA_8) {
            return 1;
        }/*w ww  . j av a2  s.  c om*/
        return 1;
    }
}

Related Tutorials