Android - Save ImageView to file with full resolution image
问题 I put an image inside an ImageView and have multitouch implemented to resize and move the image inside the ImageView. Now I need to save the resized image to a image file. I have tried the .getDrawingCache() but that image have the size of the ImageView. I want the image to show what the ImageView shows but with full resolution (larger than the ImageView). Any ideas? 回答1: You could hold a Bitmap Object in Background, which you can resize with this piece of code: Matrix matrix = new Matrix();