gpt4 book ai didi

android - 如何捕获图像缩略图并将文件保存在 Android 中的自定义文件夹中

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:57:49 24 4
gpt4 key购买 nike

我正在尝试从现有相机应用程序捕获图像,将图像保存在自定义文件夹中,并在 imageView 中显示缩略图。只要我没有指定保存文件的位置,相机就会提供缩略图:

我可以从返回的 Intent 中获取缩略图:

...
Intent i = = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(i)
}

protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
super.onActivityResult(requestCode, resultCode, intent);
Bundle extras = intent.getExtras();
Bitmap mImageBitmap = (Bitmap) extras.get("data");
}

或者我可以将文件保存在指定的文件夹中(效果很好)

  ...
Intent i = = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
i.putExtra((MediaStore.EXTRA_OUTPUT, outputFileUri);
startActivityForResult(i)
}

但缩略图不再存储在 intent 额外“数据”中,当我尝试检索缩略图时,出现错误(这是来 self 的 LogCat)

10-04 06:30:14.463: E/AndroidRuntime(1967): Caused by: java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=1, result=-1, data=null} to activity: java.lang.NullPointerException

如您所见,返回的字段为空,而不是位图缩略图。之后我尝试解码位图以直接从文件生成缩略图,但它花费的时间太长(即使在缩减采样时我也出现内存不足错误),并且两次完成这项工作似乎违反直觉。有什么建议吗?

最佳答案

好的。如果您将 outputURI 传递给 Intent ,那么您将无法在 onActivityResult() 中从 Intent 接收回数据。

我认为唯一的选择是使用相同的 outputURI 来显示缩略图..

试试这个。

void captureImage(){
File file = new File(Environment.getExternalStorageDirectory()
.getAbsolutePath() + "/MyFolder", "myImage"+ ".jpg");

mCapturedImagePath = file.getAbsolutePath();
Uri outputFileUri = Uri.fromFile(file);
Intent i = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
i.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
startActivityForResult(i, CAMERA_REQUEST);
}

onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == CAMERA_REQUEST) {
if (resultCode == RESULT_OK) {
File file = new File(mCapturedImagePath);
imageView.setImageURI(Uri.fromFile(file));
}
}
}

关于android - 如何捕获图像缩略图并将文件保存在 Android 中的自定义文件夹中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12725989/

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