Can I specify the opacity of text written using the Graphics.DrawString method?
I am doing something similar, but would like my text to be translucent, if possible.
I am currently doing this:
Graphics graphics = Graphics.FromImage(image); graphics.DrawString("This is a watermark", new Font("Arial", 40), new SolidBrush(Color.Red), 0, 0);
source share