Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Intent;
import android.graphics.Bitmap;

import android.graphics.BitmapFactory;

public class Main {

    public static Bitmap bytes2Bitmap(Intent intent) {
        byte[] buff = intent.getByteArrayExtra("bitmap");
        Bitmap bm = BitmapFactory.decodeByteArray(buff, 0, buff.length);
        return bm;
    }
}