mirrorUint32List static method

void mirrorUint32List({
  1. required Uint32List uint32list,
  2. required int imageWidth,
  3. required int imageHeight,
  4. MirrorType mirrorType = MirrorType.none,
})
override

A collection of pixels for the mirrored image.

@uint32list: uint32list is the Uint32list collection converted from image pixels, not the Uint32List collection converted from image binary.

@imageWidth & @imageHeight: imageWidth and imageHeight are the height and width of the image.

@mirrorType: The form of image mirroring,for more details, please see MirrorType.

Implementation

static void mirrorUint32List({
  required Uint32List uint32list,
  required int imageWidth,
  required int imageHeight,
  MirrorType mirrorType = MirrorType.none,
}) =>
    IImageMirror.mirrorUint32List(
      mirrorType: mirrorType,
      imageWidth: imageWidth,
      imageHeight: imageHeight,
      uint32list: uint32list,
    );