imageRotateCW function

void imageRotateCW(
  1. Image image
)

Rotate image clockwise 90deg.

Implementation

void imageRotateCW(Image image) {
  return library.ImageRotateCW(image.pointer);
}