我有一個位圖從相機,調整大小後,它改變爲水平,我需要旋轉90度,但大多數the sample都使用矩陣來旋轉,但是當我新的矩陣,它表示矩陣已過時,比我嘗試用帆布,下面this,第一次使用它,試圖弄明白,但不能轉動它,應用程序崩潰,請幫助如何通過畫布旋轉位圖
代碼
resizePhoto = BitmapFactory.decodeFile(imageLocation,bmOption);
// R o t a t e B i t m a p 90 degree
Canvas canvas = new Canvas(resizePhoto);
canvas.rotate(90);
canvas.drawBitmap(resizePhoto , null ,null);
矩陣不會被棄用,據我所知'012BGmap(resizePhoto,null,null); – Bhargav
;'你正在使用null'Matrix'導致崩潰 – pskink
@Bhargav http://developer.android.com/ intl/zh-tw/reference/android/opengl/Matrix.html –