imageClearBackground function

void imageClearBackground(
  1. Image dst,
  2. Color color
)

Clear image background with given color.

Implementation

void imageClearBackground(Image dst, Color color) {
  return library.ImageClearBackground(dst.pointer, color.ref);
}