Java tutorial
//package com.java2s; //License from project: Apache License import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.util.Base64; public class Main { public static Bitmap base64StringToBitmap(String str) { if (str == null) { return null; } byte[] bytes; bytes = Base64.decode(str, Base64.DEFAULT); return BitmapFactory.decodeByteArray(bytes, 0, bytes.length); } }