PixelFormat enum Null safety
The format of pixel data given to decodeImageFromPixels.
Constructors
- PixelFormat()
-
const
Values
- rgba8888 → const PixelFormat
-
Each pixel is 32 bits, with the highest 8 bits encoding red, the next 8 bits encoding green, the next 8 bits encoding blue, and the lowest 8 bits encoding alpha.
PixelFormat()
- bgra8888 → const PixelFormat
-
Each pixel is 32 bits, with the highest 8 bits encoding blue, the next 8 bits encoding green, the next 8 bits encoding red, and the lowest 8 bits encoding alpha.
PixelFormat()
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent 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<
PixelFormat> -
A constant List of the values in this enum, in order of their declaration.
[rgba8888, bgra8888]