我是有点困惑,因为我可以显示每串在我的Windows窗体上的每个字体,但作为一个形象并不总是可能的。 也许有只是一些错我的代码。 但让我告诉你我是想。
起初,我有这样的:
Label l = new Label();
l.Text = "Ì CSharp Î";
this.Font = new Font("Code 128", 80);
l.Size = new System.Drawing.Size(300, 200);
this.Controls.Add(l);
this.Size = new Size(300, 200);
嗯,这是非常精细的。 现在,我想尽量节省相同的字符串与相同的字体图像。 我发现这个代码,我想这就是如何做到这一点
private static Image DrawText(string text, Font font, Color textColor, Color backColor)
{
//first, create a dummy bitmap just to get a graphics object
Image img = new Bitmap(1, 1);
Graphics drawing = Graphics.FromImage(img);
//measure the string to see how big the image needs to be
SizeF textSize = drawing.MeasureString(text, font);
//free up the dummy image and old graphics object
img.Dispose();
drawing.Dispose();
//create a new image of the right size
img = new Bitmap((int)textSize.Width, (int)textSize.Height);
drawing = Graphics.FromImage(img);
//paint the background
drawing.Clear(backColor);
//create a brush for the text
Brush textBrush = new SolidBrush(textColor);
drawing.DrawString(text, font, textBrush, 0, 0);
drawing.Save();
textBrush.Dispose();
drawing.Dispose();
return img;
}
var i = DrawText("Ì CSharp Î", new Font("Code 128", 40), Color.Black, Color.White);
如果我保存图像我得到这个:
我不明白这一点。 即时通讯使用相同的字符串与相同的字体我用我的Windows窗体上。 为什么会这样? 以及如何避免这个问题?
PS:该即时通讯使用的是下载的字体这里 ,但我和其他字体测试它也和它并不总是工作。