Code Monkey home page Code Monkey logo

Comments (4)

disintegration avatar disintegration commented on July 20, 2024

Hi,

Probably your jpeg image contains an orientation exif tag that rotates the image. After you load and save the image, the orientation tag is gone. Exif loading/saving is not supported by Go image package.

You can test it with simpler code. Take the same image and load it with jpeg.Decode then save it with jpeg.Encode. See if the result is rotated.

from imaging.

daemonfire300 avatar daemonfire300 commented on July 20, 2024

@disintegration I think it's the problem you described. But what can I do to fix this? I just stumbled upon this golang/go#12202

from imaging.

disintegration avatar disintegration commented on July 20, 2024

The possible solution is to read the orientation exif tag and transform the image accordingly before processing. I've found the example in this repository:

https://github.com/wujiang/image-api

  1. Read the orientation tag using the goexif package:

    https://github.com/wujiang/image-api/blob/657e5c8578f7a556c7dcf5a456352ffff1ea6b07/handlers.go#L63

  2. Transform the image before doing any processing:

    https://github.com/wujiang/image-api/blob/657e5c8578f7a556c7dcf5a456352ffff1ea6b07/image.go#L43

I didn't test this code so I don't know if it will work for you.

The other solution is to find the Go package that can write the exif metadata, so you can save the original orientaton tag into the new JPEG file.

from imaging.

disintegration avatar disintegration commented on July 20, 2024

I'm closing it because it's not the issue of this package. Please let me know if you have any questions.

from imaging.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.