magickTransposeImage method

Future<bool> magickTransposeImage()

MagickTransposeImage() creates a vertical mirror image by reflecting the pixels around the central x-axis while rotating them 90-degrees.

This method runs inside an isolate different from the main isolate.

Implementation

Future<bool> magickTransposeImage() async => await _magickCompute(
      _magickTransposeImage,
      _wandPtr.address,
    );