我可以使用 Samsung Galaxy Tab (Android 2.2) 上的前置摄像头拍照吗?

发布于 2024-11-25 04:40:35 字数 163 浏览 0 评论 0原文

我可以用前置摄像头拍照吗?

我的应用程序有一个库存输入表单。 如果用户发送数据,
用户的脸部照片也会发送到服务器进行授权/验证。

我会将应用程序放在 Samsung Galaxy Tab (Android 2.2) 上。

有什么办法可以从前置摄像头拍照吗?

Can I take a picture from the front camera?

My application has an input form for inventory.
If an user sends a data,
the user's face pic is also sent to the server for authorization / validation.

I will put the app on Samsung Galaxy Tab (Android 2.2).

Is there any way to take a picture from the front camera?

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

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

发布评论

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

评论(2

懵少女 2024-12-02 04:40:35

对于2.2

    Camera cam = Camera.open();
    cam.setDisplayOrientation(90);
    cam.setPreviewDisplay(holder);

    Camera.Parameters para = cam.getParameters();
    para.set("camera-id", 2);
    cam.setParameters(p);

For 2.2

    Camera cam = Camera.open();
    cam.setDisplayOrientation(90);
    cam.setPreviewDisplay(holder);

    Camera.Parameters para = cam.getParameters();
    para.set("camera-id", 2);
    cam.setParameters(p);
眉黛浅 2024-12-02 04:40:35

要解决该错误:

“Camera 类型未定义 open() 方法”

import android.hardware.Camera 

这代替了

import android.graphics.Camera

两者都作为 Eclipse 中的选项给出,仅硬件一个已打开。

To solve the error:

"The method open() is undefined for the type Camera"

import android.hardware.Camera 

This is instead of

import android.graphics.Camera

Both are given as options from eclipse only hardware one has open.

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