LWUIT 中的相机

发布于 2024-12-23 06:15:06 字数 496 浏览 2 评论 0原文

我使用此代码在 LWUIT 中进行图像捕获,这在诺基亚 X2 中工作正常,但对于其他手机,它显示以下错误:

javax.microedition.media.mediaexception: unable to realize initialize failed.

请查看代码:

 vc = VideoComponent.createVideoPeer("capture://image");
       player = (Player) vc.getNativePeer();
      // vc.setPreferredH(200);
      // vc.setPreferredW(320);
        player.realize();
        player.prefetch();
        videoControl = (VideoControl)player.getControl("VideoControl");

This code is used by me for image capture in LWUIT, this works fine in Nokia X2 but for other mobile it shows the following error:

javax.microedition.media.mediaexception: unable to realize initialize failed.

Kindly look into the code :

 vc = VideoComponent.createVideoPeer("capture://image");
       player = (Player) vc.getNativePeer();
      // vc.setPreferredH(200);
      // vc.setPreferredW(320);
        player.realize();
        player.prefetch();
        videoControl = (VideoControl)player.getControl("VideoControl");

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

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

发布评论

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

评论(1

假扮的天使 2024-12-30 06:15:06

我认为这对您可能有用:

如何使用捕获图像LWUIt VIdeoComponent

在这里您可以找到有关如何使用 VideoComponent 捕获图像的说明

I think this could be useful for you:

How to capture images using LWUIt VIdeoComponent

Here you can find an explanation to how can you capture images with a VideoComponent

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