Using Facebook's Fresco to load a bitmap
问题 I'm trying to replace Picasso in my android app with Fresco. However I am unsure of how to simply load a bitmap using Fresco. With Picasso I would just do the following. Bitmap poster = Picasso.with(getActivity()) .load(url) .resize(Utils.convertDpToPixel(WIDTH,HEIGHT)) .centerCrop() .get(); I have been unable to figure out how to create a Bitmap with this Fresco. Any ideas? 回答1: As Fresco said: If your request to the pipeline is for a decoded image - an Android Bitmap, you can take advantage