Aspose.Pdf是一款功能强大的PDF文件创建,修改,浏览和转换的控件,支持转换PDF为多种文件格式以及多种文件格式转换为PDF。同时支持.NET和JAVA,并且可以用于Winform和Webform。
下面我们介绍如何使用Aspose.Pdf控件把text文件转换为PDF文件。
具体的代码如下:
C#
//read the source text file
System.IO.TextReader tr = new StreamReader("test.txt");
//Instantiate Pdf pbject by calling its empty constructor
Aspose.Pdf.Generator.Pdf pdf1 = new Aspose.Pdf.Generator.Pdf();
//Create a new section in the Pdf object
Aspose.Pdf.Generator.Section sec1 = pdf1.Sections.Add();
//Create a new text paragraph and pass the text to its constructor as argument
Aspose.Pdf.Generator.Text t2 = new Aspose.Pdf.Generator.Text(tr.ReadToEnd());
sec1.Paragraphs.Add(t2);
pdf1.Save("test.Pdf");