imageAlphaMask function

void imageAlphaMask(
  1. Image image,
  2. Image alphaMask
)

Apply alpha mask to image.

Implementation

void imageAlphaMask(Image image, Image alphaMask) {
  return library.ImageAlphaMask(image.pointer, alphaMask.ref);
}