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 convertBase64IntoBitmap(String base64) {
        byte[] decodedString = convertBase64IntoByte(base64);
        Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length);
        return decodedByte;
    }

    public static byte[] convertBase64IntoByte(String base64) {
        byte[] decodedString = Base64.decode(base64, Base64.DEFAULT);
        return decodedString;
    }
}