magickComplexImages method
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),
),
);