Introduction to how to save the contents or text of a text file as a picture

Source: Internet
Author: User

  This article mainly introduced the text file content or text saved as a picture of the method, the need for friends can refer to the following

Calling method: The code is as follows: Converttextfiletoimage (Server.MapPath ("~/log.txt"), Server.MapPath ("~/log.png"));     Implementation code:   Code as follows: void Converttextfiletoimage (String textfile,string imagefile) {System.Drawing.Font Drawfont = new System.Drawing.Font ("Song Body", 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 a display width   image = new System.Drawing.Bitmap (image, New System.Drawing.Size (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 (); }    

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.