ImageExtension extension
- on
Properties
- size → Vector2
-
Available on Image, provided by the ImageExtension extension
Returns a Vector2 representing the dimensions of this image.no setter
Methods
-
brighten(
double amount) → Future< Image> -
Available on Image, provided by the ImageExtension extension
Change each pixel's color to be brighter and return a new Image. -
darken(
double amount) → Future< Image> -
Available on Image, provided by the ImageExtension extension
Change each pixel's color to be darker and return a new Image. -
getBoundingRect(
) → Rect -
Available on Image, provided by the ImageExtension extension
Returns the bounding Rect of the image. -
pixelsInUint8(
) → Future< Uint8List> -
Available on Image, provided by the ImageExtension extension
Helper method to retrieve the pixel data of the image as a Uint8List. -
resize(
Vector2 newSize) → Future< Image> -
Available on Image, provided by the ImageExtension extension
Resizes this image to the givennewSize
.
Static Methods
-
fromPixels(
Uint8List pixels, int width, int height) → Future< Image> -
Available on Image, provided by the ImageExtension extension
Converts a raw list of pixel values into an Image object.