Is there any way to load a Bitmap
with Fresco
into a DraweeView
?
Somewhat like you can do with Glide
:
Glide.with(context)
.load(bitmap)
.into(imageView);
Is there any way to load a Bitmap
with Fresco
into a DraweeView
?
Somewhat like you can do with Glide
:
Glide.with(context)
.load(bitmap)
.into(imageView);
Copyright © 2021 Jogjafile Inc.
Fresco can do these operations for you. From the comments, I see that you want to handle the Bitmap in an efficient way, so you can let Fresco do that. As to the cropping that you are doing, there are multiple ways to do that with Fresco:
Scale type example:
Postprocessor example that can do scaling and blurring from https://github.com/facebook/fresco/blob/master/samples/showcase/src/main/java/com/facebook/fresco/samples/showcase/postprocessor/ScalingBlurPostprocessor.java: