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
This is a working code
imageView.setDrawingCacheEnabled(true); imageView.buildDrawingCache(); Bitmap bitmap = Bitmap.createBitmap(imageView.getDrawingCache());