You can get bitmap of imageview with Glide aswell, the example is
(您也可以使用Glide获取imageview的位图,示例是)
Glide.with(this)
.asBitmap()
.load(yourURL)
.into(object : CustomTarget<Bitmap>(){
override fun onResourceReady(resource: Bitmap, transition: Transition<in Bitmap>?) {
// you can use the bitmap here
}
override fun onLoadCleared(placeholder: Drawable?) {
}
})
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…