在android中将图像放置在相机视图中

发布于 2024-12-01 04:49:34 字数 332 浏览 0 评论 0原文

我想在 android 中的中间相机视图中放置图像。

我正在使用以下代码打开相机

Intent mIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
mIntent.putExtra
(MediaStore.EXTRA_OUTPUT,MediaStore.Images.Media.EXTERNAL_CONTENT_URI.toString());
startActivityForResult(mIntent, PHOTO_SELECT);

及其工作。但我不知道如何放置图像。

在此先感谢您。

I want to place an image at the middle camera view in the android.

I am using following code to open the camera

Intent mIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
mIntent.putExtra
(MediaStore.EXTRA_OUTPUT,MediaStore.Images.Media.EXTERNAL_CONTENT_URI.toString());
startActivityForResult(mIntent, PHOTO_SELECT);

and its working.But i dont know how to place an image.

Thanks in advanxe.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

晨曦÷微暖 2024-12-08 04:49:34

据我所知,如果你通过Intent启动相机,这是不可能的!
系统只是搜索一个应用程序,它可以完成您所请求的“工作”(即在您的情况下是相机应用程序)。

您必须将相机的预览图像渲染到 SurfaceView。之后,您可以将图像渲染到此 SurfaceView

As far as I know, there is no possibility, if you start the Camera via Intent!
The System is just searching for an Application, which does your requested "job" (i.e. in your case the Camera-Application).

You have to render previewImages of your Camera to a SurfaceView. After that, you can render your Images to this SurfaceView

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文