imageResize function

void imageResize(
  1. Image image,
  2. int newWidth,
  3. int newHeight
)

Resize image (Bicubic scaling algorithm).

Implementation

void imageResize(Image image, int newWidth, int newHeight) {
  return library.ImageResize(image.pointer, newWidth, newHeight);
}