android camera照片旋转90度

                bitmap这个为拍照得到的照片

                bMapRotate旋转后的照片          


Matrix matrix = new Matrix();
matrix.reset();
matrix.postRotate(90);
Bitmap bMapRotate = Bitmap.createBitmap(bitmap, 0, 0,
bitmap.getWidth(), bitmap.getHeight(),
matrix, true);

你可能感兴趣的:(android,android,android,Camera,Camera,照片)