ImageResize method

void ImageResize(
  1. Pointer<ImageC> image,
  2. int newWidth,
  3. int newHeight
)

Implementation

void ImageResize(Pointer<ImageC> image, int newWidth, int newHeight) {
  return _ImageResize(image, newWidth, newHeight);
}