Dithering modes supported when converting RGBA to monochrome.
The string values mirror the underlying encoder switches:
DitherMode.None
'none'
DitherMode.Threshold
'threshold'
DitherMode.FloydSteinberg
'fs'
DitherMode.Ordered
'ordered'
Dithering modes supported when converting RGBA to monochrome.
Remarks
The string values mirror the underlying encoder switches:
DitherMode.None('none'): No dithering; direct thresholding.DitherMode.Threshold('threshold'): Simple thresholding with a cutoff value.DitherMode.FloydSteinberg('fs'): Floyd–Steinberg error diffusion.DitherMode.Ordered('ordered'): Ordered dithering using a 4×4 Bayer matrix.