resvg_options_set_cursive_family method

void resvg_options_set_cursive_family(
  1. Pointer<resvg_options> opt,
  2. Pointer<Char> family
)

@brief Sets the cursive font family.

Must be UTF-8. NULL is not allowed.

Has no effect when the text feature is not enabled.

Default: Comic Sans MS

Implementation

void resvg_options_set_cursive_family(
  ffi.Pointer<resvg_options> opt,
  ffi.Pointer<ffi.Char> family,
) {
  return _resvg_options_set_cursive_family(
    opt,
    family,
  );
}