Skip to content
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

Fix Exif orientation unwinding #596

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

AlexQuinlivan
Copy link

Currently, the pin_degreesFromOrientation function that's used when decoding images returns the degrees that represent the Exif orientation. However, the rest of the decode function then applies those values to the already oriented image, causing it to turn the exact wrong way. This affected the normal and mirrored versions of Left and Right.

The change in 6bbf499 addresses this by inverting the returned degrees to be used as a way to unwind the transform that's already applied to the current pixel grid.

Hopefully this is a helpful PR for you, I've made some changes to the base example in 8fb0458 that allow for you to swap out the data source used. At 8fb0458 you can see the issue for the affected orientations, then by 6bbf499 they should all look correct.

…image represents 0 rotation

When converting degrees to radians we want to reverse the degrees calculated
from the image orientation as they represent the current transformation that is
baked into the image. When applying the inverse transform, we will receive an
image that represents UIImageOrientationUp
@garrettmoon
Copy link
Collaborator

Would you mind adding a test which fails and is fixed by this PR?

@AlexQuinlivan
Copy link
Author

@garrettmoon sure thing, will get around to shortly

@AlexQuinlivan
Copy link
Author

@garrettmoon hopefully this test in 2b1b06a is sufficient. It creates a pixel grid and applies certain pixel layouts. It then runs it through the decode function to receive an image with up orientation. Fails on the four horizontal images when you revert 8fb0458, so that's good I guess.

I also found another interesting bug along the way. UIGraphicsImageRenderer would handle CGFloats like 2.0000000004 by rounding up its output pixels to 3. So there's an extra commit in here that feeds it the correctly flipped image size, sans transform application. (Was picked up in the comparison of PNG data, took me a while to see the extra size...)

@AlexQuinlivan
Copy link
Author

@garrettmoon Hey mate, have you had a chance to look over any of this?

@JunyuKuang
Copy link

Thank you, this works like a charm! I wonder why it hasn't got merged yet.

@AlexQuinlivan
Copy link
Author

@JunyuKuang no idea. But I've been running this in production now for two years with success.

@mikengyn
Copy link

This fixed an issue I was dealing with. Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants