每个设备的 Android PixelFormat
类似于这个线程: 不同 Android 设备上可用的 OpenGL 扩展 我想收集 Android 设备使用的不同 PixelFormats。
要找到答案,您必须执行以下操作:
Parameters camParams = camera.getParameters();
int format = camParams.getPreviewFormat();
现在您必须在以下列表中找到该号码: developer.android.com/reference/android/graphics/PixelFormat.html#A_8
这里介绍了如何打开相机: http://developer. android.com/resources/samples/ApiDemos/src/com/example/android/apis/graphics/CameraPreview.html
我将有一个开始:
设备:T-mobile G1 / HTC Dream
android: 1.6(氰基模组)
格式:YCbCr_420_SP
那么您的 Android 手机使用什么格式? 预先感谢:D
analogous to this thread:
OpenGL extensions available on different Android devices
I would like to collect the different PixelFormats the android devices use.
To find out you must do the following:
Parameters camParams = camera.getParameters();
int format = camParams.getPreviewFormat();
Now you got to find the number in the following list:
developer.android.com/reference/android/graphics/PixelFormat.html#A_8
How to generally open the camera is described here:
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/graphics/CameraPreview.html
I'll have a start:
device: T-mobile G1 / HTC Dream
android: 1.6 (cyanogen mod)
format: YCbCr_420_SP
So what formats do your android phones use?
thanks in advance :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据文档,这是所有设备的默认设置
我尝试使用 setPreviewFormat 来更改此设置,但在 HTC Tattoo 和 HTC Desire 上没有取得太大成功
According to the documentation this is the default in all devices
I've tried to use setPreviewFormat to change this without much success on HTC Tattoo and HTC Desire
设备:摩托罗拉XT720(MOTOROI)
安卓:2.0.1
格式:YCbCr_420_SP
device: Motorola XT720(MOTOROI)
android: 2.0.1
format: YCbCr_420_SP