ImagePixelFormat enum Camera Configuration

Image pixel format

Inheritance
Available extensions

Values

unknown → const ImagePixelFormat

Unknown format

rgb888 → const ImagePixelFormat

RGB 888 (Red, Green, Blue)

bgr888 → const ImagePixelFormat

BGR 888 (Blue, Green, Red)

abgr8888 → const ImagePixelFormat

ABGR 8888 (Alpha, Blue, Green, Red)

alpha8 → const ImagePixelFormat

Alpha only (8 bits)

rgb565 → const ImagePixelFormat

RGB 565 (5-bit Red, 6-bit Green, 5-bit Blue)

argb8888 → const ImagePixelFormat

ARGB 8888 (Alpha, Red, Green, Blue)

yuv420_888 → const ImagePixelFormat

YUV 420 888 (YCbCr)

yv12 → const ImagePixelFormat

YVU (YCrCb)

nv21 → const ImagePixelFormat

NV21 Android YUV format

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<ImagePixelFormat>
A constant List of the values in this enum, in order of their declaration.