magickSetImageOrientation method

bool magickSetImageOrientation(
  1. OrientationType orientation
)

MagickSetImageOrientation() sets the image orientation.

  • orientation: the image orientation type.

Implementation

bool magickSetImageOrientation(OrientationType orientation) =>
    _magickWandBindings.MagickSetImageOrientation(
      _wandPtr,
      orientation.index,
    ).toBool();