Android examples for Graphics:Bitmap Save
convert String To Bitmap
//package com.java2s; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.util.Base64; public class Main { public static Bitmap convertStringToBitmap(String string) { byte[] byteArray1; byteArray1 = Base64.decode(string, Base64.DEFAULT); Bitmap bmp = BitmapFactory.decodeByteArray(byteArray1, 0, byteArray1.length);/* w w w.ja va 2 s . c om*/ return bmp; } }