Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

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

import android.util.Base64;

public class Main {
    public static Bitmap fromBase64(String base64) {
        Bitmap bitmap = null;
        if (base64 != null) {
            byte[] bytes = Base64.decode(base64, Base64.DEFAULT);
            if (null != bytes) {
                bitmap = BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
            }
        }
        return bitmap;
    }
}