在C#中生成PDF文件通常需要使用第三方庫來實現。以下是一種常用的方法,使用iTextSharp庫來生成PDF文件:
首先,安裝iTextSharp庫。可以通過NuGet包管理器搜索并安裝iTextSharp庫。
創建一個新的C#控制臺應用程序,并添加對iTextSharp的引用。
編寫代碼來生成PDF文件。以下是一個簡單的示例:
using iTextSharp.text;
using iTextSharp.text.pdf;
using System.IO;
class Program
{
static void Main()
{
Document document = new Document();
PdfWriter.GetInstance(document, new FileStream("output.pdf", FileMode.Create));
document.Open();
document.Add(new Paragraph("Hello, World!"));
document.Close();
}
}
通過這種方法,您可以使用iTextSharp庫在C#中生成PDF文件。您可以根據具體需求,進一步定制生成的PDF文件,例如添加文本、圖片、表格等內容。