如何在android中的位图中进行翻译和旋转?

时间:2013-04-22 10:31:44

标签: android matrix bitmap

我正在尝试在android ImageView中翻译和旋转位图。但我无法得到结果。任何指针都会有所帮助。

    int width = mb.getWidth();
    int height = mb.getHeight();

    // create a matrix for the manipulation
    Matrix matrix = new Matrix();
    matrix.preTranslate(width/2, height/2)
    matrix.postRotate(angle);
    Bitmap resizedBitmap = Bitmap.createBitmap(mb, 0, 0,
                      width, height, matrix, true);
    imageview.setImageBitmap(resizedBitmap);

0 个答案:

没有答案