如何在诺基亚 5800 应用程序中打开相机闪光灯

发布于 2024-12-13 02:18:54 字数 70 浏览 2 评论 0 原文

我要求我的应用程序在夜间通过诺基亚 5800 手机拍摄 3 张照片。我想确保拍照时相机的闪光灯保持打开状态。我怎样才能保证呢?

I require my application to take 3 pictures via Nokia 5800 phone during night-time. I want to ensure that the camera's flash remains ON while taking pictures. How can I ensure it?

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

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

发布评论

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

评论(2

萌吟 2024-12-20 02:18:55

您可以使用 AMMS(JSR-234) API 的 FlashControl。这是一段显示其用法的代码示例。

FlashControl flash = (FlashControl)
player.getControl("javax.microedition.media.control.camera.FlashControl");
if(flash!=null) {
    flash.setMode(FlashControl.FORCE_WITH_REDEYEREDUCE);
}

You can use the AMMS(JSR-234) API's FlashControl. Here is a piece of code example that shows its use.

FlashControl flash = (FlashControl)
player.getControl("javax.microedition.media.control.camera.FlashControl");
if(flash!=null) {
    flash.setMode(FlashControl.FORCE_WITH_REDEYEREDUCE);
}
遥远的绿洲 2024-12-20 02:18:55

您需要使用 APIBridge.jar ,该 jar 将允许您调用本机相机应用程序。因此,您可以从代码中调用本机相机应用程序。本机相机应用程序具有 Flash 的默认设置。

在 google 上搜索 APIBridge.jar ,你会发现它是示例。您还可以找到其他有用的示例来阅读收件箱、联系人列表等。

You need to use APIBridge.jar , this jar will allow you to call native camera application. So you can call Native Camera, application from your code. Native camera Application has default setting for Flash.

Search on google for APIBridge.jar , you will find it will example. You may also find other useful example for reading inbox, contact list etc.

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