how to get image bitmap from imageview in android code example
Example: get bitmap from imageview
Bitmap bm=((BitmapDrawable)imageView.getDrawable()).getBitmap();
Bitmap bm=((BitmapDrawable)imageView.getDrawable()).getBitmap();