欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

將文本文件的內(nèi)容或者文字保存成圖片的方法分享

 更新時(shí)間:2014年02月07日 15:54:47   作者:  
這篇文章主要介紹了將文本文件的內(nèi)容或者文字保存成圖片的方法,需要的朋友可以參考下

調(diào)用方法:

復(fù)制代碼 代碼如下:

ConvertTextFileToImage(Server.MapPath("~/Log.txt"),Server.MapPath("~/Log.png"));

實(shí)現(xiàn)代碼:

復(fù)制代碼 代碼如下:

void ConvertTextFileToImage(String textFile,String imageFile)
{
System.Drawing.Font drawFont = new System.Drawing.Font("宋體", 12);
System.Drawing.Bitmap image = new System.Drawing.Bitmap(1, 1);
System.Drawing.Graphics g = System.Drawing.Graphics.FromImage(image);
String text = System.IO.File.ReadAllText(textFile, Encoding.GetEncoding("GB2312"));
System.Drawing.SizeF sf = g.MeasureString(text, drawFont, 1024); //設(shè)置一個(gè)顯示的寬度
image = new System.Drawing.Bitmap(image, new System.Drawing.Size(Convert.ToInt32(sf.Width), Convert.ToInt32(sf.Height)));
g = System.Drawing.Graphics.FromImage(image);
g.Clear(System.Drawing.Color.White);
g.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAliasGridFit;
g.DrawString(text, drawFont, System.Drawing.Brushes.Black, new System.Drawing.RectangleF(new System.Drawing.PointF(0, 0), sf));
image.Save(imageFile, System.Drawing.Imaging.ImageFormat.Png);
g.Dispose();
image.Dispose();
}

相關(guān)文章

最新評(píng)論