yuruizhe

Results 1 comments of yuruizhe

各个厂商的图片加载库好像可以自动翻转的吧。如果不好使是不是可以如下: ```java // 图片旋转角度 int rotate = 0; ExifInterface exif = new ExifInterface(imagePath); // 先获取当前图像的方向,判断是否需要旋转 int imageOrientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL); switch (imageOrientation) { case ExifInterface.ORIENTATION_ROTATE_90: rotate = 90; break; case...