GithubHelp home page GithubHelp logo

Comments (4)

johansatge avatar johansatge commented on May 23, 2024 2

Found the issue (pull request). When flipping the pixels to fix orientations 5 and 7, the destination width and height were wrong. That's why the destination image was broken.

The fix has been pushed in [email protected].

Let's close this. Please feel free to reopen if you still have issues. Thanks again for the report!

from jpeg-autorotate.

dlednik avatar dlednik commented on May 23, 2024

@johansatge any idea what is going on? I need fix for this asap and are willing to fix the source code my self if you give me some pointers where to start 👍

from jpeg-autorotate.

dlednik avatar dlednik commented on May 23, 2024

quick workaround with sharp library if anyone needs it

if (orientation > 1) {
    if (orientation === 5 || orientation === 7) {
        // Until auto-rotate is fixed
        if (orientation === 5) {
            sharp(filePath).rotate(-90).flip().toBuffer().then( data => {
                fs.writeFileSync(filePath, data);
            }).catch( err => {
                Helper.returnError(res, err, 400, `api_v1_photo:get/${req.params.orderId}/${req.params.photoId}`);
            });
        } else {
            sharp(filePath).rotate(90).flip().toBuffer().then( data => {
                fs.writeFileSync(filePath, data);
            }).catch( err => {
                Helper.returnError(res, err, 400, `api_v1_photo:get/${req.params.orderId}/${req.params.photoId}`);
            });
        }
    } else {
        fs.writeFileSync(filePath, buffer);
    }
}

from jpeg-autorotate.

johansatge avatar johansatge commented on May 23, 2024

Hi,

thanks a lot for reporting this.

I reproduce too with the images from the /test/samples directory. It looks like the issue has been here for some time, unfortunately.

I had a quick look in src/transform.js and didn't see what's wrong. I will analyze the issue deeper in the next days. Before next week hopefully.

Note, this issue demonstrates that the existing tests are clearly not covering this module's features correctly. I have opened #12 to try to address this.

from jpeg-autorotate.

Related Issues (16)

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.