Convert a true color image (24 bit) to black & white (1 bit) with an ordered dithering method.
Set AllowAlpha to True to avoid losing the alpha channel.
Note: Any selection is ignored. The whole image is converted to the specified palette
// Convert true color image to black & white using the Floyd-Steinberg algorithm ImageEnView1.Proc.ConvertToBW_FloydSteinberg();
// Convert true color image to black & white using a local threshold algorithm (mean) ImageEnView1.Proc.ConvertToBWLocalThreshold( 4, ietMean );
// Convert true color image to black & white using a local threshold algorithm (median) ImageEnView1.Proc.ConvertToBWLocalThreshold( 4, ietMedian );
// Convert true color image to black & white using a local threshold algorithm (min/max mean) ImageEnView1.Proc.ConvertToBWLocalThreshold( 4, ietMeanMinMax );
// Convert true color image to black & white with an ordered dithering method ImageEnView1.Proc.ConvertToBWOrdered();
// Convert true color image to black & white using a thresholding algorithm ImageEnView1.Proc.ConvertToBWThreshold( 128 );
// Convert true color image to black & white using a thresholding algorithm (using the average level) ImageEnView1.Proc.ConvertToBWThreshold( -1 );
// Convert true color image to black & white using a thresholding algorithm (using maximum entropy) ImageEnView1.Proc.ConvertToBWThreshold( -2 );