Giter Site home page Giter Site logo

Comments (5)

maoxiaozhu avatar maoxiaozhu commented on June 15, 2024

这个问题你解决了吗?

from smartcropper.

maoxiaozhu avatar maoxiaozhu commented on June 15, 2024

caijian1 caijian2

是有什么地方设置不对吗

解决了吗

from smartcropper.

zpswz avatar zpswz commented on June 15, 2024

菜见1 菜见2
有什么地方设置不对吗

解决了吗

没有作者都没有发解决方案

from smartcropper.

luoye000 avatar luoye000 commented on June 15, 2024

我在部分机型上遇到了这个问题

修复方案

@Override
    public Bitmap getBitmap() {
        Bitmap bmp = null;
        Drawable drawable = getDrawable();
        if (drawable instanceof BitmapDrawable) {
            bmp = ((BitmapDrawable) drawable).getBitmap();
        }
        //修复裁剪区域不一致问题
        if (bmp != null) {
            int width = drawable.getIntrinsicWidth();
            int height = drawable.getIntrinsicHeight();
            int bitWidth = bmp.getWidth();
            int bitHeight = bmp.getHeight();
            if (width != bitWidth || height != bitHeight) {
                Matrix matrix = new Matrix();
                matrix.setScale(1.0f * width / bitWidth, 1.0f * height / bitHeight);
                return Bitmap.createBitmap(bmp, 0, 0, bitWidth, bitHeight, matrix, true);
            }
        }
        return bmp;
    }

这两个方法获取出的 大小不一致造成的

private Point[] getFullImgCropPoints() {
        Point[] points = new Point[4];
        Drawable drawable = getDrawable();
        if (drawable != null) {
            int width = drawable.getIntrinsicWidth();
            int height = drawable.getIntrinsicHeight();
            points[0] = new Point(0, 0);
            points[1] = new Point(width, 0);
            points[2] = new Point(width, height);
            points[3] = new Point(0, height);
        }
        return points;
    }

   

public Bitmap getBitmap() {

        Bitmap bmp = null;
        Drawable drawable = getDrawable();
        if (drawable instanceof BitmapDrawable) {
            bmp = ((BitmapDrawable) drawable).getBitmap();
        }
        return bmp;
    }

from smartcropper.

codeguyFred avatar codeguyFred commented on June 15, 2024

适配方案的原因

from smartcropper.

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.