-
Notifications
You must be signed in to change notification settings - Fork 9
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 rotation is ignored #16
Comments
Thanks for the report. The problem is that this isn't actually a rotated image, it's a horizontal image with EXIF data that rotates it. The image library used by artem does not support reading EXIF data, so this is not an easy problem to solve. While it is possible to implement code to read the EXIF, this would only partially solve the problem, as most EXIF readers do not support all available formats. Perhaps support for rotating the image with a new argument would solve the problem? |
This does seem like an issue the library should fix, to be honest. I find it weird that nearly all ASCII converters have this issue, regardless of their programming language. |
I'm closing this for now, as this is not the right place to track the upstream issue (which seems unlikely to be resolved soon). Feel free to reopen it if you disagree. |
The latest version of `image-rs` supports reading and applying orientation metadata for JPEG, WebP and TIFF formats. Reference: https://docs.rs/image/latest/image/enum.DynamicImage.html#method.apply_orientation Implements: FineFindus#16
The latest version of `image-rs` supports reading and applying orientation metadata for JPEG, WebP and TIFF formats. Reference: https://docs.rs/image/latest/image/enum.DynamicImage.html#method.apply_orientation Implements: FineFindus#16
The latest version of `image-rs` supports reading and applying orientation metadata for JPEG, WebP and TIFF formats. Reference: https://docs.rs/image/latest/image/enum.DynamicImage.html#method.apply_orientation Implements: #16
When converting images shot on a smartphone in portrait mode, the output is rotated anti-clockwise by 90°. This might have to do with the image metadata not being read properly, or at least not the part that tells that the image is rotated 90°.
jp2a and ascii-image-converter have the same issue
The text was updated successfully, but these errors were encountered: