Example usage for android.graphics BitmapFactory decodeByteArray

List of usage examples for android.graphics BitmapFactory decodeByteArray

Introduction

In this page you can find the example usage for android.graphics BitmapFactory decodeByteArray.

Prototype

public static Bitmap decodeByteArray(byte[] data, int offset, int length) 

Source Link

Document

Decode an immutable bitmap from the specified byte array.

Usage

From source file:Main.java

public static Bitmap byteArrayToBitmap(byte[] data) {
    Bitmap bitmap = BitmapFactory.decodeByteArray(data, 0, data.length);
    return bitmap;
}

From source file:Main.java

public static Bitmap bytes2Bimap(byte[] b) {
    if (b.length == 0) {
        return null;
    }//from   w w w .  j  a v  a 2s.  c o  m
    return BitmapFactory.decodeByteArray(b, 0, b.length);
}

From source file:Main.java

public static Bitmap ByteArrayToBitmap(byte[] byteArray) {
    Bitmap bitmap = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length);

    return bitmap;
}

From source file:Main.java

public static Bitmap byteArrayToBitmap(byte[] byteArray) {
    Bitmap bitmap = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length);
    return bitmap;
}

From source file:Main.java

public static Bitmap byteArrayToBitmap(byte[] byteArray) {
    Bitmap output = BitmapFactory.decodeByteArray(byteArray, 0, byteArray.length);
    return output;
}

From source file:Main.java

public static Bitmap convertToBMP(byte[] data) {
    Bitmap bmp = null;
    bmp = BitmapFactory.decodeByteArray(data, 0, data.length);
    return bmp;
}

From source file:Main.java

public static Bitmap toBitmap(byte[] data) {
    return BitmapFactory.decodeByteArray(data, 0, data.length);
}

From source file:Main.java

public static Bitmap bytes2Bimap(byte[] b) {
    if (b.length != 0) {
        return BitmapFactory.decodeByteArray(b, 0, b.length);
    } else {/*from   w ww  . j  av  a 2s .co m*/
        return null;
    }
}

From source file:Main.java

public static Bitmap Bytes2Bitmap(byte[] b) {
    if (b.length != 0) {
        return BitmapFactory.decodeByteArray(b, 0, b.length);
    }/*from   w ww  . j ava2 s.  c  om*/
    return null;
}

From source file:Main.java

public static Bitmap bytesToBimap(byte[] b) {
    if (b.length != 0) {
        return BitmapFactory.decodeByteArray(b, 0, b.length);
    } else {//from  w  w  w . j av  a2  s  .c o m
        return null;
    }
}