Android 从imageview中获得bitmap的方法

Posted 星辰

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 从imageview中获得bitmap的方法相关的知识,希望对你有一定的参考价值。

第一种:

使用setDrawingCacheEnabled()和getDrawingCache()这两种方法,第一个是为了设置是否开启缓存,第二个就可以直接获得imageview中的缓存,一般来说需要在获得缓存以后setDrawingCacheEnabled设置为false,因为这样才能让之前的缓存去掉,不会影响后来新的缓存。

    ImageView image = (ImageView) view.getTag();  
    Matrix max = new Matrix();  
    image.setDrawingCacheEnabled(true);  
    Bitmap bm = image.getDrawingCache();  

第二种:

Bitmap bm =((BitmapDrawable) ((ImageView) image).getDrawable()).getBitmap();

 

以上是关于Android 从imageview中获得bitmap的方法的主要内容,如果未能解决你的问题,请参考以下文章

如何获得ImageView中的图像

在imageView Android中滑动图像

android开发的textview和imageview有啥区别吗?

Android 从drawable-hdpi中获取图标显示在ImageView上

如何在 Android 中单击 ImageView 时从一个片段移动到另一个片段?

从imageview Android中删除图像[重复]