magickSetFormat method

bool magickSetFormat(
  1. String format
)

Sets the format of the magick wand.

Implementation

bool magickSetFormat(String format) => using(
      (Arena arena) => _magickWandBindings.MagickSetFormat(
        _wandPtr,
        format.toNativeUtf8(allocator: arena).cast(),
      ),
    ).toBool();