用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > Net教程

将文本文件的内容或者文字保存成图片的方法分享

时间:2015-01-29  来源:互联网  作者:佚名

调用方法:
复制代码 代码如下:
ConvertTextFileToImage(Server.MapPath("~/Log.txt"),Server.MapPath("~/Log.png"));

实现代码:
复制代码 代码如下:
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); //设置一个显示的宽度
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();
}

来顶一下
返回首页
返回首页
推荐资讯
asp.net实现word文档在线预览功能的方法 asp.net实现word文档在线预览功能的本文实例讲述了asp.net实现word文档在线预览功能的方法。分享
.net开发微信公众平台实例教程 .net开发微信公众平台实例教程本文实例讲述了.net开发微信公众平台的方法。分享给大家供大
相关文章
栏目更新
栏目热门