I am using HTML5 file api on mobile web app for image uploading utility.
I am capturing image using camera and upload it to server.
Problem is that if I capture portrait image the uploaded image automatically converted to Landscape.
Wrong orientation when image captured by HTML5 file api on IOS 6.0
Asked Answered
You'll need to transform the image to correct the orientation. Fortunately, the image should include EXIF data that you can use to do that. If you like, you can do this before the image is uploaded to your server:
- Read the image's EXIF data
- Use a canvas element to transform the image as appropriate
- Export the canvas image into an image file
There's an excellent writeup, including code samples, in this blog post.
updated invalid link from a link contributed by @btbJosh –
Quixotic
© 2022 - 2024 — McMap. All rights reserved.