Android: how to convert whole ImageView to Bitmap?

前端 未结 6 1852
北荒
北荒 2020-11-28 21:37

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

6条回答
  •  星月不相逢
    2020-11-28 22:13

    Have you tried:

    BitmapDrawable drawable = (BitmapDrawable) imageView.getDrawable();
    Bitmap bitmap = drawable.getBitmap();
    

提交回复
热议问题