关于显示后,图片旋转
Bitmap bmp = BitmapFactory.decodeFile(pathName);
imageView.setImageBitmap(rotateImage(bmp));
private Bitmap rotateImage(Bitmap bmp) {
Matrix matrix = new Matrix();
matrix.postRotate(90);
return Bitmap.createBitmap(bmp, 0, 0, bmp.getWidth(), bmp.getHeight(), matrix, true) ;
}
为什么这样不能实现 图片的变换呢?有点奇怪了