1

我尝试使用 Matrix 旋转位图,如果角度是 90 度而不是 90 度,则它的工作正常,位图位置正在改变。

代码片段:

            Matrix matrix = new Matrix();
            matrix.postRotate(90);
            Bitmap map= Bitmap.createBitmap(resizedBitmap, 0, 0,resizedBitmap.getWidth(), resizedBitmap.getHeight(),matrix, true);

你们能告诉我如何在不改变图像位置的情况下旋转图像吗?

谢谢。

4

2 回答 2

2

您好,如果您使用的是 ImageView,我建议您为 ImageView 设置矩阵,而不是每次都创建一个新的位图

              Matrix matrix=new Matrix();
     img.setScaleType(ScaleType.MATRIX);   
     int height =  img.arrow.getHeight();
        int width =  img.arrow.getWidth();
    matrix.postRotate((float) angle, width/2,height/2);
     img.setImageMatrix(matrix);
于 2012-08-03T05:37:10.067 回答
0

这是唯一一个为我工作的

private Bitmap rotateBitmap(Bitmap bitmap, int rotationAngleDegree){

        int w = bitmap.getWidth();
        int h = bitmap.getHeight();

        int newW=w, newH=h;
        if (rotationAngleDegree==90 || rotationAngleDegree==270){
            newW = h;
            newH = w;
        }
        Bitmap rotatedBitmap = Bitmap.createBitmap(newW,newH, bitmap.getConfig());
        Canvas canvas = new Canvas(rotatedBitmap);

        Rect rect = new Rect(0,0,newW, newH);
        Matrix matrix = new Matrix();
        float px = rect.exactCenterX();
        float py = rect.exactCenterY();
        matrix.postTranslate(-bitmap.getWidth()/2, -bitmap.getHeight()/2);
        matrix.postRotate(rotationAngleDegree);
        matrix.postTranslate(px, py);
        canvas.drawBitmap(bitmap, matrix, new Paint( Paint.ANTI_ALIAS_FLAG | Paint.DITHER_FLAG | Paint.FILTER_BITMAP_FLAG ));
        matrix.reset();

        return rotatedBitmap;
    }
于 2015-02-03T07:25:34.330 回答