我正在尝试检查位图的方向并在需要时将其翻转,但在应用代码时出错。这是我的代码,而我正试图使用ExifInterface翻转图像:
@RequiresApi(api = Build.VERSION_CODES.N)
public void flipping(Bitmap b)
{
ByteArrayOutputStream bos = new ByteArrayOutputStream();
b.compress(Bitmap.CompressFormat.JPEG,100, bos);
byte[] bitmapdata = bos.toByteArray();
ByteArrayInputStream bs = new ByteArrayInputStream(bitmapdata);
try {
ExifInterface exif = new ExifInterface(bs);
int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION,
ExifInterface.ORIENTATION_UNDEFINED);
switch(orientation) {
case ExifInterface.ORIENTATION_ROTATE_90:
rotateImage(b, 90);
break;
case ExifInterface.ORIENTATION_ROTATE_180:
rotateImage(b, 180);
break;
case ExifInterface.ORIENTATION_ROTATE_270:
rotateImage(b, 270);
break;
case ExifInterface.ORIENTATION_NORMAL:
default:
break;
}
encoding();
} catch (IOException e) {
e.printStackTrace();
}
}
public static Bitmap rotateImage(Bitmap source, float angle) {
Matrix matrix = new Matrix();
matrix.postRotate(angle);
return Bitmap.createBitmap(source, 0, 0, source.getWidth(), source.getHeight(),
matrix, true);
}
这是错误:
java.lang.NoSuchMethodError: No direct method <init>(Ljava/io/InputStream;)V in class Landroid/media/ExifInterface; or its super classes (declaration of 'android.media.ExifInterface' appears in /system/framework/framework.jar)
at com.sara.image_test.MainActivity.flipping(MainActivity.java:181)
at com.sara.image_test.MainActivity.onActivityResult(MainActivity.java:66)
at android.app.Activity.dispatchActivityResult(Activity.java:7165)
at android.app.ActivityThread.deliverResults(ActivityThread.java:4994)
at android.app.ActivityThread.handleSendResult(ActivityThread.java:5041)
at android.app.ActivityThread.access$1600(ActivityThread.java:229)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1875)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:148)
at android.app.ActivityThread.main(ActivityThread.java:7325)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1230)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1120)
答案 0 :(得分:15)
您正在尝试使用android.media.ExifInterface
。在Android 7.0+(API Level 24)上,该类可以安全使用,并且具有一个InputStream
的构造函数。显然,您正在旧设备上运行您的应用。这导致两个问题:
旧设备没有该构造函数
ExifInterface
在旧设备上存在安全漏洞,导致您的应用遭遇恶意软件攻击
请改用android.support.media.ExifInterface
。它来自支持库(com.android.support:exifinterface
,具体而言)。它提供了一个构造函数,其InputStream
适用于所有受支持的Android版本。并且,它绕过旧设备上的安全漏洞。
答案 1 :(得分:13)
将其添加到build.gradle文件
compile "com.android.support:exifinterface:25.1.0"
对我来说它有效。
答案 2 :(得分:6)
供 AndroidX 使用
androidx.exifinterface.media.ExifInterface
导入build.gradle
:
implementation 'androidx.exifinterface:exifinterface:1.0.0'
答案 3 :(得分:1)
代码示例中使用的ExifInterface构造函数:
getValues
在SDK级别24中添加了。
但看起来代码是在早于Android版本的设备上运行的。