drawSetFontResolution method
DrawSetFontResolution() sets the image resolution.
xResolution
: the image x resolutionyResolution
: the image y resolution
Implementation
bool drawSetFontResolution({
required double xResolution,
required double yResolution,
}) =>
_magickWandBindings.DrawSetFontResolution(
_wandPtr, xResolution, yResolution)
.toBool();