Android使用Uri和Bitmap缩小图库中的图像

时间:2017-06-06 23:42:03

标签: android bitmap uri android-contentprovider filenotfoundexception

我在尝试将图像转换为位图以显着缩小图像时收到FileNotFound异常。

我正在检索用户从图库中选择的图像

public static void GET_PICTURE_FROM_GALLERY (Activity activity)
{
    Intent getIntent = new Intent(Intent.ACTION_GET_CONTENT);
    getIntent.setType("image/*");

    Intent pickIntent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
    pickIntent.setType("image/*");

    Intent chooserIntent = Intent.createChooser(getIntent, "Select Image");
    chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] {pickIntent});

    activity.startActivityForResult(chooserIntent, REQUEST_SELECT_PHOTO);
}

然后,当用户完成选择时:

public void setChosenPicture (Activity activity, Intent data)
{
    if(editingViewHelper != null)
    {
        String[] filePathColumn = {MediaStore.Images.Media.DATA};

        Uri selectedImage = data.getData();

        System.out.println("GOT URI: " + selectedImage.toString());

        Cursor cursor = activity.getContentResolver().query(selectedImage, filePathColumn, null, null, null);
        cursor.moveToFirst();

        int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
        editingViewHelper.holder.tempUri = Uri.parse(cursor.getString(columnIndex));

        System.out.println("SET URI: " + editingViewHelper.holder.tempUri.toString());

        cursor.close();

        editingViewHelper.holder.imageView.setImageURI(editingViewHelper.holder.tempUri);
    }
}

这输出以下内容:

GOT URI: content://media/external/images/media/110
SET URI: /storage/emulated/0/DIRECTORY/IMG_20170606_154512_1664512804.jpg

现在这很好用,但只有当我调用imageView.setImageUri(uri)时才会这样做。但是,我不能这样做,因为我必须缩小图像,以便应用程序不会使用荒谬的ram。为此,我有这个方法

public static Bitmap decodeUri(Context c, Uri uri, final int requiredSize)
{
    System.out.println("URI: " + uri.toString());

    try
    {
        BitmapFactory.Options o = new BitmapFactory.Options();
        o.inJustDecodeBounds = true;

 //This line is where the error occurs. 
     BitmapFactory.decodeStream(c.getContentResolver().openInputStream(uri), null, o);  

        int width_tmp = o.outWidth;
        int height_tmp = o.outHeight;
        int scale = 1;

        while(true)
        {
            if(width_tmp / 2 < requiredSize || height_tmp / 2 < requiredSize)
                break;

            width_tmp /= 2;
            height_tmp /= 2;
            scale *= 2;
        }

        BitmapFactory.Options o2 = new BitmapFactory.Options();
        o2.inSampleSize = scale;

        return BitmapFactory.decodeStream(c.getContentResolver().openInputStream(uri), null, o2);
    }
    catch (FileNotFoundException e)
    {
        e.printStackTrace();
        return null;
    }
}

最后,我有以下.output FileNotFound异常

URI: /storage/emulated/0/DIRECTORY/IMG_20170606_154512_1664512804.jpg
java.io.FileNotFoundException: No content provider: /storage/emulated/0/DIRECTORY/IMG_20170606_154512_1664512804.jpg

现在奇怪的是,这个方法 工作,但只有在我的应用程序中从拍摄中传递Uri时才会这样做。以下是最后一个不抛出任何错误的方法的示例输出

Uri: content://com.subliroid.dinnerdecider.provider/external_files/Pictures/DIRECTORY/IMG_20170606_154512_1664512804.jpg

我可以用两种类型的uris调用imageView.setImageUri(uri),但是我无法缩小这种类型。直到我开始在真实设备上测试我的应用程序时才能忽略这一点,这些设备需要4k +图片,而模拟器需要的是小图片。

1 个答案:

答案 0 :(得分:1)

最简单的方法是到目前为止,删除大部分代码并使用现有的image-loading library。 Google建议使用Glide;我使用了Picasso,还有很多其他的。

  

然后,当用户完成选择时:

query()电话会在许多情况下失败(可移动存储上的图片,用户选择您可能不会期望响应Intent的应用等)。

  

最后,我有以下.output FileNotFound异常

您不必要地创建了新的Uri,而且您输入的内容不正确,因为您传入Uri.parse()的值没有方案。

如果您不打算使用现有的,已经调试过的代码(即图像加载库),请将Uri中的onActivityResult()传递给您的位图缩放代码。然后,弄清楚何时将大部分逻辑移出主应用程序线程,因为您在当前实现中冻结了UI。