magickSetSizeOffset method
Sets the size and offset of the magick wand. Set it before you read a raw image format such as RGB, GRAY, or CMYK.
Implementation
bool magickSetSizeOffset({
required int columns,
required int rows,
required int offset,
}) =>
_magickWandBindings.MagickSetSizeOffset(_wandPtr, columns, rows, offset)
.toBool();