magickReadImage method

Future<bool> magickReadImage(
  1. String imageFilePath
)

Reads an image or image sequence. The images are inserted just before the current image pointer position. Use magickSetFirstIterator(), to insert new images before all the current images in the wand, magickSetLastIterator() to append add to the end, magickSetIteratorIndex() to place images just after the given index.

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

Implementation

Future<bool> magickReadImage(String imageFilePath) async =>
    await _magickCompute(
      _magickReadImage,
      _MagickReadImageParams(_wandPtr.address, imageFilePath),
    );