magickDrawImage method

Future<bool> magickDrawImage(
  1. DrawingWand drawWand
)

Renders the drawing wand on the current image.

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

Implementation

Future<bool> magickDrawImage(DrawingWand drawWand) async =>
    await _magickCompute(
      _magickDrawImage,
      _MagickDrawImageParams(_wandPtr.address, drawWand._wandPtr.address),
    );