Skip to content
Discussion options

You must be logged in to vote

When you set the ColorType of the image to Palette the colors will be reduced with dithering enabled. You can prevent that from happening by reducing the colors yourself with the following command:

img.Quantize(new QuantizeSettings()
{
    DitherMethod = DitherMethod.No,
    Colors = 256,
});

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by otori
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Help
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #1075 on November 22, 2021 20:48.