I have an image file with text and pictures.
This is a typical document image form.
Converted colors using ColorMatrix.
The ColorMatrix structure is shown below.
// create the negative color matrix
colorMatrix = new ColorMatrix(new float[][]
{
new float[] {-1, 0, 0, 0, 0},
new float[] {0, -1, 0, 0, 0},
new float[] {0, 0, -1, 0, 0},
new float[] {0, 0, 0, 1, 0},
new float[] {1, 1, 1, 0, 1}
});
imageAttributes.SetColorMatrix(colorMatrix);
Register and use ColorMatrix with ImageAttributes.
After conversion, the characters are not clear.
After the black is converted to white, the thickness comes out thin.
Is there any way to make only white color thicker?
I want to make the text much clearer and bolder when I change the color.