在android中将图像放置在相机视图中
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我所知,如果你通过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