感谢
NIK
答案 0 :(得分:3)
使用此
int w = oldBitmap.getWidth();
int h = oldBitmap.getHeight();
String filePath = null;
Matrix mtx = new Matrix();
mtx.postRotate(180);
oldBitmap = Bitmap.createBitmap(oldBitmap, 0, 0, w, h, mtx, true);
干杯!!!