I have my application that is displaying images with different ratio, resized inside (centerInside) imageView. What I need is to create bitmap from the ImageView including t
try { photo.setImageURI(Uri.parse("Location"); BitmapDrawable drawable = (BitmapDrawable) photo.getDrawable(); Bitmap bitmap = drawable.getBitmap(); bitmap = Bitmap.createScaledBitmap(bitmap, 70, 70, true); photo.setImageBitmap(bitmap); } catch (Exception e) { }