magickSetImage method
MagickSetImage() replaces the last image returned by MagickSetIteratorIndex(), MagickNextImage(), MagickPreviousImage() with the images from the specified wand.
This method runs inside an isolate different from the main isolate.
setWand
: the set_wand wand.
Implementation
Future<bool> magickSetImage(MagickWand setWand) async => await _magickCompute(
_magickSetImage,
_MagickSetImageParams(
_wandPtr.address,
setWand._wandPtr.address,
),
);