Baseflow / PhotoView

Implementation of ImageView for Android that supports zooming, by various touch gestures.
https://baseflow.com
Apache License 2.0
18.77k stars 3.92k forks source link

How to get Bitmap from the PhotoView #797

Closed kpradeepkumarreddy closed 3 years ago

kpradeepkumarreddy commented 3 years ago

How to get Bitmap from the PhotoView ? Image is set to PhotoView using Glide. Now, how can i get the Bitmap ?

pradeep-orbi commented 3 years ago

Using glide to get it

Glide.with(this).asBitmap().load(fileUrl) .into(object : CustomTarget<Bitmap?>() { override fun onResourceReady( bitmap: Bitmap, transition: com.bumptech.glide.request.transition.Transition<in Bitmap?>? ) { }