Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to save the contents or text of a text file as a picture

2025-04-03 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly explains "how to save the content of a text file or text as a picture". The content of the explanation in the article is simple and clear, and it is easy to learn and understand. let's study and learn "how to save the content or text of a text file as a picture".

Call method:

The copy code is as follows:

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

Implementation code:

The copy code is as follows:

Void ConvertTextFileToImage (String textFile,String imageFile)

{

System.Drawing.Font drawFont = new System.Drawing.Font (Song style, 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); / / sets the width of a display

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 ()

}

Thank you for your reading, the above is the content of "how to save the content of the text file or text as a picture". After the study of this article, I believe you have a deeper understanding of how to save the content of the text file or text as a picture, and the specific use still needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report