java.lang.Object | |
↳ | android.graphics.ImageFormat |
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | JPEG | Encoded formats. | |||||||||
int | NV16 | YCbCr format, used for video. | |||||||||
int | NV21 | YCrCb format used for images, which uses the NV21 encoding format. | |||||||||
int | RGB_565 | RGB format used for pictures encoded as RGB_565 see
setPictureFormat(int) . |
|||||||||
int | UNKNOWN | ||||||||||
int | YUY2 | YCbCr format used for images, which uses YUYV (YUY2) encoding format. | |||||||||
int | YV12 | Android YUV format: This format is exposed to software decoders and applications. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Use this function to retrieve the number of bits per pixel of an
ImageFormat.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Encoded formats. These are not necessarily supported by the hardware.
YCbCr format, used for video. Whether this format is supported by the
camera hardware can be determined by
getSupportedPreviewFormats()
.
YCrCb format used for images, which uses the NV21 encoding format. This
is the default format for camera preview images, when not otherwise set
with setPreviewFormat(int)
.
RGB format used for pictures encoded as RGB_565 see
setPictureFormat(int)
.
YCbCr format used for images, which uses YUYV (YUY2) encoding format.
This is an alternative format for camera preview images. Whether this
format is supported by the camera hardware can be determined by
getSupportedPreviewFormats()
.
Android YUV format:
This format is exposed to software decoders and applications.
YV12 is a 4:2:0 YCrCb planar format comprised of a WxH Y plane followed
by (W/2) x (H/2) Cr and Cb planes.
This format assumes
- an even width
- an even height
- a horizontal stride multiple of 16 pixels
- a vertical stride equal to the height
y_size = stride * height
c_size = ALIGN(stride/2, 16) * height/2
size = y_size + c_size * 2
cr_offset = y_size
cb_offset = y_size + c_size
Whether this format is supported by the camera hardware can be determined
by
getSupportedPreviewFormats()
.
Use this function to retrieve the number of bits per pixel of an ImageFormat.