在 J2ME 中设置手机摄像头所需的分辨率
我有一个使用诺基亚 X2 的应用程序,它是 5 MPix 相机。我只需要 2 MPix 的图像。所以我将 Phone 上的设置更改为 2 MPix。当我使用手机相机应用程序拍摄快照时,我得到了 2 MPix 图像。但是,当我通过 J2ME 代码激活相机时,它会为我提供一张 5 MPix 的图像。有什么线索吗?
I have an application using Nokia X2 which is 5 MPix camera. I need images only for 2 MPix. So I changed the settings on Phone to 2 MPix. When I take a snap by using Phones Camera application, I am getting a 2 MPix image. However, when I activate the camera through my J2ME Code, it gives me an image with 5 MPix. Any clue ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要通过API设置相机的分辨率。它应该看起来像下面的东西。
来读取支持的分辨率
您可以使用返回数组 (res) 的索引 ,该索引是您设置为 CameraControl#setStillResolution()
You need to set the resolution for the camera through the API. It should look like something below.
You can read the supported resolutions with
the the index of the returned array (res) is the value you set to CameraControl#setStillResolution()