magickComplexImages method

Future<MagickWand?> magickComplexImages(
  1. ComplexOperator operator
)

Performs complex mathematics on an image sequence.

Don't forget to call destroyMagickWand on the returned MagickWand when done.

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

  • operator: A complex operator.

Implementation

Future<MagickWand?> magickComplexImages(ComplexOperator operator) async =>
    MagickWand._fromAddress(
      await _magickCompute(
        _magickComplexImages,
        _MagickComplexImagesParams(_wandPtr.address, operator.index),
      ),
    );