You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SimpleProgressiveJpegConfig jpegConfig = new SimpleProgressiveJpegConfig();
ImagePipelineConfig config = OkHttpImagePipelineConfigFactory.newBuilder(context, new OkHttpClient())
.setProgressiveJpegConfig(jpegConfig)
.setBitmapsConfig(Bitmap.Config.RGB_565)
.setResizeAndRotateEnabledForNetwork(true)
.build();
Fresco.initialize(context, config);
BlurPostprocessor using Bitmap.Config.ARGB_8888 and this parameter is hardcoded.
As result if user using not default Bitmap.Config in initialize - BlurPostprocessor would not work.
I have not checked other Postprocessor.
As a solution add to BlurPostprocessor constructor Bitmap.Config as parameter.
Any info log would be very useful.
The text was updated successfully, but these errors were encountered:
I'm using such code for initialize Fresco:
BlurPostprocessor
usingBitmap.Config.ARGB_8888
and this parameter is hardcoded.As result if user using not default
Bitmap.Config
in initialize -BlurPostprocessor
would not work.I have not checked other Postprocessor.
As a solution add to
BlurPostprocessor
constructorBitmap.Config
as parameter.Any info log would be very useful.
The text was updated successfully, but these errors were encountered: