The progressive jpeg config can be setted when initializing Fresco.
ImagePipelineConfig config = ImagePipelineConfig.newBuilder(context)
.setProgressiveJpegConfig(progressiveJpegConfig)
.build();
Fresco.initialize(context, config);
Now I want to loading the progressive jpeg in different scan quality, is there any way to achieve it?