使用ExifInterface时出现Android错误

Sal*_*aai 13 android

我正在尝试检查位图的方向并在需要时将其翻转,但在应用代码时出错.这是我的代码,而我试图使用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);
    }
Run Code Online (Sandbox Code Playgroud)

这是错误:

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)
Run Code Online (Sandbox Code Playgroud)

Com*_*are 19

你正在尝试使用android.media.ExifInterface.在Android 7.0+(API Level 24)上,该类可以安全使用,并且具有一个构造函数InputStream.显然,您正在旧设备上运行您的应用.这导致两个问题:

  1. 旧设备将没有该构造函数

  2. ExifInterface 在旧设备上存在安全漏洞,使您的应用程序受到恶意软件攻击

android.support.media.ExifInterface改用.它来自支持库(com.android.support:exifinterface具体而言).它提供了一个构造函数InputStream,可以在所有受支持的Android版本上运行.而且,它绕过旧设备上的安全漏洞.


Fra*_*cis 16

AndroidX使用

androidx.exifinterface.media.ExifInterface
Run Code Online (Sandbox Code Playgroud)

导入build.gradle

implementation 'androidx.exifinterface:exifinterface:1.0.0'
Run Code Online (Sandbox Code Playgroud)

  • 谢谢。官方文档太差了,没有提到依赖关系。 (3认同)
  • 最新版本可在 https://developer.android.com/jetpack/androidx/releases/exifinterface 获取 (3认同)

小智 13

将其添加到build.gradle文件中

compile "com.android.support:exifinterface:25.1.0"
Run Code Online (Sandbox Code Playgroud)

对我来说它有效.