Is it possible to get the bitmap which is being displayed by the SimpleDraweeView ?
From the SimpleDraweeView you can get the DraweeHierarchy and the current Drawable. If it's a BitmapDrawable, or any other Drawable implementation that publish the related image, you can get the related Bitmap.
Sounds good,thanks!