transpose method

void transpose()

Transposes the image object.

throws FaceException An error has occurred during Face Library execution.

Implementation

void transpose() {
  var err = faceSDK.id3FaceImage_Transpose(_pHandle.value);
  if (err != FaceError.success.value) {
    throw FaceException(err);
  }
}