magickSetSize method

bool magickSetSize(
  1. int width,
  2. int height
)

Sets the size of the magick wand. Set it before you read a raw image format such as RGB, GRAY, or CMYK.

  • width : the width in pixels.
  • height : the height in pixels.

Implementation

bool magickSetSize(int width, int height) =>
    _magickWandBindings.MagickSetSize(_wandPtr, width, height).toBool();