0

我正在使用以下代码创建一些动态图像

System.Drawing.Image img = new Bitmap(300, 600);

Graphics drawing = Graphics.FromImage(img);

//paint the background
drawing.Clear(System.Drawing.Color.White);

//create a brush for the text
Brush textBrush = new SolidBrush(textColor);

drawing.DrawString(text, font, textBrush, 0, 0);

drawing.Save();

textBrush.Dispose();
drawing.Dispose();

我想使用图像(公司徽标)而不是白色背景,以使其像水印一样。我怎样才能做到这一点?

4

1 回答 1

0

将您的 textBrush 定义更改为如下所示:

int alpha = 128; // range from 0 (transparent) to 255 (opaque)
Brush textBrush = new SolidBrush(Color.FromArgb(alpha, textColor);
于 2013-03-25T09:49:00.297 回答