Can you make an alpha transparent PNG with C#?

To fix the text “blockiness”, can’t you just do…

g.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;

after this line…

Graphics g = Graphics.FromImage( (Image) image );

Leave a Comment