Here you can find the source of getBitmapFromImageView(ImageView theImage)
public static Bitmap getBitmapFromImageView(ImageView theImage)
//package com.java2s; //License from project: Apache License import android.graphics.Bitmap; import android.graphics.drawable.BitmapDrawable; import android.widget.ImageView; public class Main { public static Bitmap getBitmapFromImageView(ImageView theImage) { return ((BitmapDrawable) theImage.getDrawable()).getBitmap(); }/*from w ww .ja va 2 s . c o m*/ }