Dither type to use when reducing colors.
Namespace: HiComponents.IEvolutionAssembly: IEvolution2 (in IEvolution2.dll) Version: 10.1.0.0
Syntax
C# | Visual Basic | Visual C++ |
public enum DitherAlgorithm
Public Enumeration DitherAlgorithm
public enum class DitherAlgorithm
Members
Member | Value | Description |
---|---|---|
Solid | 0 |
A solid color algorithm without dither.
|
Ordered4x4 | 1 |
A 4x4 ordered dither algorithm.
|
Ordered8x8 | 2 |
An 8x8 ordered dither algorithm.
|
Ordered16x16 | 3 |
A 16x16 ordered dither algorithm.
|
Spiral4x4 | 4 |
A 4x4 spiral dither algorithm.
|
Spiral8x8 | 5 |
An 8x8 spiral dither algorithm.
|
DualSpiral4x4 | 6 |
A 4x4 dual spiral dither algorithm.
|
DualSpiral8x8 | 7 |
An 8x8 dual spiral dither algorithm.
|
ErrorDiffusion | 8 |
An error diffusion algorithm.
|