每个设备的 Android PixelFormat

发布于 2024-08-27 01:28:53 字数 852 浏览 8 评论 0原文

类似于这个线程: 不同 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 技术交流群。

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

发布评论

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

评论(2

从来不烧饼 2024-09-03 01:28:53

根据文档,这是所有设备的默认设置

公共抽象无效onPreviewFrame
(byte[]数据,相机camera)

自:API 级别 1 回调
提供预览帧。
参数数据的内容
预览帧的格式定义为
ImageFormat,可以通过以下方式查询
getPreviewFormat()。如果
setPreviewFormat(int) 永远不会被调用,
默认为 YCbCr_420_SP
(NV21) 格式。

我尝试使用 setPreviewFormat 来更改此设置,但在 HTC Tattoo 和 HTC Desire 上没有取得太大成功

According to the documentation this is the default in all devices

public abstract void onPreviewFrame
(byte[] data, Camera camera)

Since: API Level 1 The callback that
delivers the preview frames.
Parameters data The contents of the
preview frame in the format defined by
ImageFormat, which can be queried with
getPreviewFormat(). If
setPreviewFormat(int) is never called,
the default will be the YCbCr_420_SP
(NV21) format.

I've tried to use setPreviewFormat to change this without much success on HTC Tattoo and HTC Desire

記柔刀 2024-09-03 01:28:53

设备:摩托罗拉XT720(MOTOROI)
安卓:2.0.1
格式:YCbCr_420_SP

device: Motorola XT720(MOTOROI)
android: 2.0.1
format: YCbCr_420_SP

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