标签: android android-imageview
我只想保存在ImageView中显示/裁剪的图像的位图。
当我调用它时,它返回整个位图:
Bitmap bitmap = ((BitmapDrawable) imageView.getDrawable()).getBitmap();
答案 0 :(得分:1)
使用此命令从ImageView获取位图
imageView.buildDrawingCache(); Bitmap bmap = imageView.getDrawingCache();