将捕获的照片保存到内部目录以便稍后在HashMap中放置是否有用?

时间:2016-02-01 13:37:10

标签: java android bitmap

我的想法:

将照片拍摄并保存到内部目录或MODE.PRIVATE是否有用,并使用该文件将其保存在Bitmap上,然后从Bitmap保存到Base64 {{ 1}}?

我已将此代码保存到私人应用程序目录中。

String

我的目标是pictureActionIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); File imageFolder = new File(getApplicationContext().getFilesDir().getPath()+"/img/"); File image = new File(imageFolder,taskItems.get("uuid")+".jpg"); Uri uriSavedImage = Uri.fromFile(image); pictureActionIntent.putExtra(MediaStore.EXTRA_OUTPUT,uriSavedImage); startActivityForResult(pictureActionIntent, CAMERA_REQUEST); Base64,我希望将其放在String上。

如果是的话,我该怎么做?

感谢您的帮助!

亲切的问候!

0 个答案:

没有答案