android的imageView获取图片

在使用imageVIew中的过程中,我们会设定参数android:scaleType="centerCrop"来实现居中缩放。我们要获取imageView显示的图片时,可以使用 iv_photo.setDrawingCacheEnabled(true);Bitmap bitmap = iv_pho.getDrawingCache(),iv_photo.setDrawingCacheEnabled(false);这里要注意的时这样获取出来的图片是缩放后的图片,并不是原图。

你可能感兴趣的:(android的imageView获取图片)