Rotate image in android

前端 未结 5 992
自闭症患者
自闭症患者 2020-12-19 05:48

I want rotate image in both the ways Clockwise as well as Anti clock wise. I had try but not rotate image both the way, so plz give me solution for my problem if you know..

5条回答
  •  醉酒成梦
    2020-12-19 06:13

    Matrix mat = new Matrix();
    mat.preRotate(angle);///in degree
    Bitmap mBitmap = Bitmap.createBitmap(originalBmp, 0, 0, modWidth, modHeight, mat, true);
            //originalBmp -> original img as bitmap
             //modHeight -> new height
            //modWidth -> new width
    

    use the above code.

提交回复
热议问题