magickSetPage method

bool magickSetPage({
  1. required int width,
  2. required int height,
  3. required int x,
  4. required int y,
})

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();