IImage class abstract

Mixed in types

Constructors

IImage()

Properties

hashCode int
The hash code for this object.
no setterinherited
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

Static Methods

desaturationFromImage({required Image image, DesaturationAlgorithm desaturationAlgorithm = DesaturationAlgorithm.grayscale, PixelFormat pixelFormat = PixelFormat.rgba8888, bool isDispose = false}) Future<Image?>
image decolorization.
desaturationFromUint32List({required Uint32List uint32list, required int imageWidth, required int imageHeight, DesaturationAlgorithm desaturationAlgorithm = DesaturationAlgorithm.grayscale, PixelFormat pixelFormat = PixelFormat.rgba8888}) Future<Image>
-------------------------------------DESATURATION------------------------------------------- Image pixel collection Uint32List decolorization process.
desaturationUint32List({required Uint32List uint32list, required int imageWidth, required int imageHeight, DesaturationAlgorithm desaturationAlgorithm = DesaturationAlgorithm.grayscale}) Uint32List
Image pixel collection decolorization.
invertFromImage({required Image image, PixelFormat pixelFormat = PixelFormat.rgba8888, bool isDispose = false}) Future<Image?>
The image is inverted and then the image is generated.
invertFromUint32List({required Uint32List uint32list, required int imageWidth, required int imageHeight, PixelFormat pixelFormat = PixelFormat.rgba8888}) Future<Image>
-------------------------------------INVERT------------------------------------------- The image pixel set is inverted and then the image is generated. @uint32list: uint32list is the Uint32list collection converted from image pixels, not the Uint32List collection converted from image binary.
invertUint32List({required Uint32List uint32list, required int imageWidth, required int imageHeight}) Uint32List
A collection of image pixels for inverse color processing. @uint32list: uint32list is the Uint32list collection converted from image pixels, not the Uint32List collection converted from image binary.
mirrorFromImage({required Image image, MirrorType mirrorType = MirrorType.none, PixelFormat pixelFormat = PixelFormat.rgba8888, bool isDispose = false}) Future<Image?>
Image Direct Mirroring Method.
override
mirrorFromUint32List({required Uint32List uint32list, required int imageWidth, required int imageHeight, MirrorType mirrorType = MirrorType.none, PixelFormat pixelFormat = PixelFormat.rgba8888}) Future<Image>
Image mirror mixin method.
override
mirrorUint32List({required Uint32List uint32list, required int imageWidth, required int imageHeight, MirrorType mirrorType = MirrorType.none}) → void
A collection of pixels for the mirrored image.
override
rotateFromImage({required Image image, RotateType rotateType = RotateType.none, PixelFormat pixelFormat = PixelFormat.rgba8888, bool isDispose = false}) Future<Image?>
Image rotation.
override
rotateFromUint32List({required Uint32List uint32list, required int imageWidth, required int imageHeight, RotateType rotateType = RotateType.none, PixelFormat pixelFormat = PixelFormat.rgba8888}) Future<Image>
override
rotateUint32List({required Uint32List uint32list, required int imageWidth, required int imageHeight, RotateType rotateType = RotateType.none}) Uint32List
Image pixel collection rotation.
override