Xfinium.PDF是一个功能强大的PDF处理库,可以用于在合法大小的分页器上创建文档。下面是使用Xfinium.PDF创建文档的步骤:
PdfFixedDocument document = new PdfFixedDocument();
PdfPage page = document.Pages.Add();
page.Width = PdfPageSize.Legal.Width;
page.Height = PdfPageSize.Legal.Height;
page.Margins.Left = 50;
page.Margins.Right = 50;
page.Margins.Top = 50;
page.Margins.Bottom = 50;
PdfFormattedText text = new PdfFormattedText();
text.Text = "Hello, World!";
text.Font = new PdfStandardFont(PdfStandardFontFace.Helvetica, 12);
text.Position = new PdfPoint(50, 50);
page.Graphics.DrawString(text);
document.Save("output.pdf");
以上是使用Xfinium.PDF在合法大小的分页器上创建文档的基本步骤。Xfinium.PDF还提供了丰富的功能和API,可以进行更复杂的PDF操作,如添加图像、表格、链接等。
领取专属 10元无门槛券
手把手带您无忧上云