如何将文本文件或文档转换为二进制文件以及如何显示数据 [英] How to convert a text file or a document to binary one and how to display the data

查看:688
本文介绍了如何将文本文件或文档转换为二进制文件以及如何显示数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs ev)
     {
         string strText = this.richTextBox2.Text;
         StreamReader myReader = new StreamReader(strText);
         float linesPerPage = 0;
         float yPosition = 0;
         int count = 0;
         float leftMargin = ev.MarginBounds.Left;
         float topMargin = ev.MarginBounds.Top;
         string line = null;
         Font printFont = this.richTextBox1.Font;
         SolidBrush myBrush = new SolidBrush(Color.Black);
         // Work out the number of lines per page, using the MarginBounds.
         linesPerPage = ev.MarginBounds.Height / printFont.GetHeight(ev.Graphics);
         // Iterate over the string using the StringReader, printing each line.
         while (count < linesPerPage && ((line = myReader.ReadLine()) != null))
         {
             // calculate the next line position based on the height of the font according to the printing device
             yPosition = topMargin + (count * printFont.GetHeight(ev.Graphics));
             // draw the next line in the rich edit control
             ev.Graphics.DrawString(line, printFont, myBrush, leftMargin, yPosition, new StringFormat());
             count++;
         }
         // If there are more lines, print another page.
         if (line != null)
             ev.HasMorePages = true;
         else
             ev.HasMorePages = false;
         myBrush.Dispose();
     }

推荐答案

这篇关于如何将文本文件或文档转换为二进制文件以及如何显示数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆