QOI class
Represents the information found inside a QOI image, whether the image is QOI formatted yet, or not
Can be constructed from a:
- raw binary file, with the QOI.fromRaw constructor
- PNG image, with the QOI.fromPNG constructor
- QOI image, with the QOI.fromQOI constructor
Can be converted to a:
- Available extensions
Constructors
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toImage(
) → Future< Image> -
Available on QOI, provided by the FlutterQOIExts extension
Create an ui.Image from this QOI data, in future -
toImageWidget(
{Widget? loadingWidget}) → FutureBuilder< Image> -
Available on QOI, provided by the FlutterQOIExts extension
Using QOI data, create a FutureBuilder which will show an ui.Image once ready -
toPNG(
) → Uint8List -
Encode to a PNG image, using the
Imagelibrary -
toQOI(
) → Uint8List - Encode to a QOI image, using the built-in encoder
-
toRaw(
) → Uint8List - Dump to a raw binary image, without any conversions
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited