Android Bitmap from Byte Array Create byteToBitmap(byte[] byteArray)

Here you can find the source of byteToBitmap(byte[] byteArray)

Description

byte To Bitmap

Declaration

public static Bitmap byteToBitmap(byte[] byteArray) 

Method Source Code

//package com.java2s;

import android.graphics.Bitmap;

import android.graphics.BitmapFactory;

public class Main {
    public static Bitmap byteToBitmap(byte[] byteArray) {
        if (byteArray.length != 0) {
            return BitmapFactory.decodeByteArray(byteArray, 0,
                    byteArray.length);//  ww  w.j  a v  a2 s  . c  o  m
        } else {
            return null;
        }
    }
}

Related

  1. unFlattenBitmap(byte[] bitmapData)
  2. getBitmapImage(Context context, String base64)
  3. Bytes2Bimap(byte[] b)
  4. bytes2Bimap(byte[] b)
  5. convertByteArrayToBitmap(byte[] b)