magickSetFont method

bool magickSetFont(
  1. String font
)

Sets the font associated with the MagickWand.

Implementation

bool magickSetFont(String font) => using(
      (Arena arena) => _magickWandBindings.MagickSetFont(
        _wandPtr,
        font.toNativeUtf8(allocator: arena).cast(),
      ),
    ).toBool();