ImageDither method

void ImageDither(
  1. Pointer<ImageC> image,
  2. int rBpp,
  3. int gBpp,
  4. int bBpp,
  5. int aBpp,
)

Dither image data to 16bpp or lower (Floyd-Steinberg dithering)

Implementation

void ImageDither(Pointer<ImageC> image, int rBpp, int gBpp, int bBpp, int aBpp)
  => _ImageDither(image, rBpp, gBpp, bBpp, aBpp);