-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EXIF support for downloaded images. #846
Comments
Why do you want to ignore EXIF? |
Also, EXIF is not read from the web. Only content providers and files. |
I have cases of images online, that although on the browser they appear correctly on "portrait" orientation. On Android Picasso rotates them to "landscape" and the image has the wrong direction. Are you sure that EXIF orientation is not working with online? Because I have this issue with online images. |
Your issue is that the EXIF is not applied to the image.
|
Good. It still is a problem :) . Is anyone about to do it? Are there any limitations? Would it help if I forked and made the required changes? |
@panagath A custom transformation can be applied here from your side to check and read the EXIF. Picasso can be extended in various ways to fix unique cases like these. We aim for the mainstream/majority of cases and slowly open up as we see fit. A transformation will occur in the bg thread of the pipeline so no performance hit there. |
I am having the same issue. Some images on URL are in portrait and some are landscape. |
May I ask for final solution for this problem? |
+1 , we are seeing an error "unsupported image format" when trying to open PNG or GIF images Is there a way to not call EXIF for those file formats? |
@JakeWharton maybe it's time to disable comments on this issue as it closed and as you said how situation with EXIF values looks like. I understand you. Cheers! |
I am facing the same issue.. I am uploading portrait images but after uploading they becomes landscape.. |
I am facing the same issue as @SurbhiVSambare |
Same issue for me as well |
Picasso auto rotates by 90degrees an image coming from the web that has the following EXIF data:
Resolution : 3264 x 2448
Orientation : rotate 90
It would be nice if we could have an option to disable auto rotation using EXIF.
The text was updated successfully, but these errors were encountered: