Coder Social home page Coder Social logo

Comments (3)

forJrking avatar forJrking commented on May 26, 2024

图片压缩前和压缩后出现90度旋转

建议把原图上传下,测试修复

from kluban.

1322202454 avatar 1322202454 commented on May 26, 2024

我已经处理了是因为 图片压缩的时候 缩放和旋转一起使用的时候 图片没法旋转,我把这两个动作拆开 先缩放再旋转之后就可以了

from kluban.

forJrking avatar forJrking commented on May 26, 2024

我已经处理了是因为 图片压缩的时候 缩放和旋转一起使用的时候 图片没法旋转,我把这两个动作拆开 先缩放再旋转之后就可以了

原因为postScale 不会清空 matrix,set方法会。修改此问题代码如下

        if (angle > 0) {
            matrix.postRotate(angle.toFloat())
        }
        //双线性压缩
        if (scale != 1f) {
            matrix.postScale(scale, scale)
        }

from kluban.

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.