hi
refer below link
http://aspsnippets.com/Articles/Create-Add-Watermark-Text-to-Images-Photo-in-ASPNet-using-C-and-VBNet.aspx
I used it to put text watermark but font of text is solid I want it has transparency how I can do it?
best regards
neda
In the same article, you just need to change the Brush
Brush brush = new SolidBrush(Color.Red);
to
Brush brush = new SolidBrush(Color.FromArgb(80, Color.Red));
Opacity values are from 1 - 255.
Less the value the more Transparency you will see.
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.