ImagePixelFormat enum
Image pixel format.
Values
- IPF_BINARY → const ImagePixelFormat
-
0:Black, 1:White
- IPF_BINARYINVERTED → const ImagePixelFormat
-
0:White, 1:Black
- IPF_GRAYSCALED → const ImagePixelFormat
-
8bit gray
- IPF_NV21 → const ImagePixelFormat
-
NV21
- IPF_RGB_565 → const ImagePixelFormat
-
16bit with RGB channel order stored in memory from high to low address
- IPF_RGB_555 → const ImagePixelFormat
-
16bit with RGB channel order stored in memory from high to low address
- IPF_RGB_888 → const ImagePixelFormat
-
24bit with RGB channel order stored in memory from high to low address
- IPF_ARGB_8888 → const ImagePixelFormat
-
32bit with ARGB channel order stored in memory from high to low address
- IPF_RGB_161616 → const ImagePixelFormat
-
48bit with RGB channel order stored in memory from high to low address
- IPF_ARGB_16161616 → const ImagePixelFormat
-
64bit with ARGB channel order stored in memory from high to low address
- IPF_ABGR_8888 → const ImagePixelFormat
-
32bit with ABGR channel order stored in memory from high to low address
- IPF_ABGR_16161616 → const ImagePixelFormat
-
64bit with ABGR channel order stored in memory from high to low address
- IPF_BGR_888 → const ImagePixelFormat
-
24bit with BGR channel order stored in memory from high to low address
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.