【VS2010 C# 代码】把文字做成图片

时间:2020-10-06 07:55:23
【文件属性】:

文件名称:【VS2010 C# 代码】把文字做成图片

文件大小:40KB

文件格式:RAR

更新时间:2020-10-06 07:55:23

VS2010 文字 图片

Microsoft Visual Studio 2010做的C#把文字做成图片实例,主要代码: Bitmap bitmapOut = new Bitmap(600, 600); Graphics graOut = Graphics.FromImage(bitmapOut); //创建画笔 graOut.FillRectangle(Brushes.White, new Rectangle(0, 0, 600, 600)); //把b1涂成白色 Font fontText = new Font("宋体", 8); SolidBrush sbhText = new SolidBrush(Color.Black); graOut.DrawString(sText, fontText, sbhText, new PointF(10, 10)); bitmapOut.Save("D:\\temp\\temp0907.bmp"); graOut.Dispose(); bitmapOut.Dispose();


【文件预览】:
Demo_createTextImage
----Demo_createTextImage()
--------Program.cs(502B)
--------w_main.cs(2KB)
--------Demo_createTextImage.csproj(4KB)
--------w_main.Designer.cs(3KB)
--------Properties()
--------obj()
--------w_main.resx(6KB)
--------bin()
----Demo_createTextImage.sln(902B)
----Demo_createTextImage.suo(20KB)

网友评论