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

This is how I am rendering the image url to ImageView. Unfortunately when i render an image it was showing in landscape mode but the actual image is in portrait.

Simon Chius
  • 476
  • 5
  • 18

1 Answers1

2

This is a problem with exif rotation handling in Picasso. You should either rotate the image in code or fix the source image to have the correct orientation without using exif rotation.

I should also mention that this problem only affects images retrieved via url.

craigts
  • 2,857
  • 1
  • 25
  • 25