【发布时间】:2011-12-02 04:35:31
【问题描述】:
如何围绕中心点旋转图像?这会旋转它但也会移动它:
Matrix mat = new Matrix();
mat.postRotate(45);
Bitmap bMapRotate = Bitmap.createBitmap(dialBM, 0, 0, dialBM.getWidth(),dialBM.getHeight(), mat, true);
dial.setImageBitmap(bMapRotate);
我查看了本网站上的其他示例,但它们要么无法工作,要么无法使用画布,我不想使用画布。
【问题讨论】:
标签: android