毕加索缓存返回转换后的图像而不是原始图像

时间:2016-01-17 20:13:47

标签: android picasso image-caching

我在我的Android应用程序中使用Picasso。使用Picasso变换我渲染了在我的应用程序的某些部分中变换的图像,但是当我尝试在另一部分渲染图像时,我也获得了变换后的图像。如何在不进行转换的情况下显示原始图像?

这是一个代码示例。

String imageUrl = "http://path/image.png";

CustomTransformation *trans= new CustomTransformation();
Picasso.with(this).load(imageUrl).transform(trans).into(myImageView1);
Picasso.with(this).load(imageUrl).into(myImageView2);

在此之后,两个图像视图显示图像,并将变换应用于它们

1 个答案:

答案 0 :(得分:3)

可能您没有设置转换键,因此缓存机制看不到差异。 例如:

private Transformation blur = new Transformation() {
    @Override
    public Bitmap transform(Bitmap source) {
        Bitmap blurred = BitmapUtils.createBlurredBitmap(source);
        source.recycle();
        return blurred;
    }

    @Override
    public String key() {
        return "blurred";   //this will be added to the key that Picasso uses for caching
    }
};
//key: <uri>\nblurred
void loadAndBlur(Uri uri, ImageView mPhoto) {
        picasso.load(uri).transform(blur).into(mPhoto);
}
//key: <uri>
void load(Uri uri, ImageView mPhoto) {
        picasso.load(uri).into(mPhoto);
}