magickReadImageBlob method

Future<bool> magickReadImageBlob(
  1. Uint8List blob
)

MagickReadImageBlob() reads an image or image sequence from a blob. In all other respects it is like MagickReadImage().

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

Implementation

Future<bool> magickReadImageBlob(Uint8List blob) async =>
    await _magickCompute(
      _magickReadImageBlob,
      _MagickReadImageBlobParams(
        _wandPtr.address,
        blob,
      ),
    );