gpt4 book ai didi

android - 无法从文件 URI 设置位图

转载 作者:行者123 更新时间:2023-11-29 01:04:50 25 4
gpt4 key购买 nike

我一直在尝试用相机拍一张图片,并将这张图片放在我的ImageView中。首先我发现过去的版本 24 你需要使用 FileProvider,它现在似乎可以工作了。但是,每当我尝试从 URI 创建 BitMap 时,它仍然是 null。我想知道路径应该是什么,以便从中创建位图?

private File createImageFile() throws IOException {
File storageDir = Environment.getExternalStorageDirectory();
File image = File.createTempFile(
"submit",
".jpg",
storageDir
);
return image;
}

private void dispatchCameraIntent() throws Exception {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
File photoFile = null;
try {
photoFile = createImageFile();

Uri path = FileProvider.getUriForFile(getApplicationContext(), "com.example.daan.tvshowtracker.provider", photoFile);
// Bitmap bitmap = BitmapFactory.decodeFile(path.toString()); <- also tried it this way
Bitmap bitmap = MediaStore.Images.Media.getBitmap(this.getContentResolver(), path);
submitImage.setImageBitmap(bitmap);
} catch (IOException ex) {
ex.printStackTrace();
}
if (photoFile != null) {
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(photoFile));
startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE);
}

......
}
}

上面的代码是我用来创建图像和调度相机的函数。我的 list 中确实有提供程序设置,我的 res 文件夹中有一个 provider_paths.xml 文件,如不同帖子中所述。我得到的数据是:

路径:“content://com.example.daan.tvshowtracker.provider/external_files/submit111012311.jpg”

照片文件:“/storage/emulated/0/submit111012311.jpg”

有谁知道为什么位图仍然是null?感谢您的帮助!

编辑:更新了代码我创建了 onActivityResult(),它从 Intent 返回数据。在 putExtra 中,我放置了我的图像文件。

private void dispatchCameraIntent() throws Exception {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
try {
photoFile = createImageFile();

takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoFile);
startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE);
} catch (IOException ex) {
ex.printStackTrace();
}

public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == REQUEST_IMAGE_CAPTURE) {
Uri path = FileProvider.getUriForFile(getApplicationContext(), "com.example.daan.tvshowtracker.provider", photoFile);
Bitmap photo = (Bitmap) data.getExtras().get("data");
submitImage.setImageBitmap(photo);
}
}

但是,当我从 Intent 中获取这些数据时,它只显示一个黑色的小图像?虽然数据似乎在那里Only displays this as image, instead of the image it took

最佳答案

您甚至在拍照之前就尝试从媒体商店获取位图。

在调用 startActivityForResult() 之前,您不能这样做。

而且在你调用之后也不行。

您只能在拍照后执行此操作。

执行 onActivityResult()

关于android - 无法从文件 URI 设置位图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48033254/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com