imageAlphaClear function

void imageAlphaClear(
  1. Image image,
  2. Color color,
  3. double threshold
)

Clear alpha channel to desired color.

Implementation

void imageAlphaClear(Image image, Color color, double threshold) {
  return library.ImageAlphaClear(image.pointer, color.ref, threshold);
}