transpose method

void transpose()

Transposes the image object.

throws DocumentException An error has occurred during Document Library execution.

Implementation

void transpose() {
  var err = documentSDK.id3DocumentImage_Transpose(_pHandle.value);
  if (err != DocumentError.success.value) {
    throw DocumentException(err);
  }
}