毕加索以错误的方向显示

时间:2016-07-12 13:22:45

标签: android picasso image-caching

Picasso.with(mContext).load(lPreviewData.getImage()).into(holder.lPreviewIV);

这就是我将图像网址渲染到ImageView的方式。不幸的是,当我渲染图像时,它以横向模式显示,但实际图像是纵向的。

1 个答案:

答案 0 :(得分:1)

这是problem with exif rotation handling in Picasso。您应该在代码中旋转图像,或者固定源图像以使其具有正确的方向,而不使用exif旋转。

我还应该提到这个问题只影响通过url检索的图像。