magickSetPage method
Sets the page geometry of the magick wand.
Implementation
bool magickSetPage({
required int width,
required int height,
required int x,
required int y,
}) =>
_magickWandBindings.MagickSetPage(_wandPtr, width, height, x, y).toBool();