[C#] 纯文本查看 复制代码 using PdfSharp.Pdf;
using PdfSharp.Pdf.IO;
using PdfSharp.Drawing;
using System.IO;
// 读取 PDF 文件
PdfDocument document = PdfReader.Open("table.pdf");
// 获取 PDF 中第一页
PdfPage page = document.Pages[0];
// 使用 PdfSharp 绘图功能渲染 PDF 页面
XGraphics gfx = XGraphics.FromPdfPage(page);
// 使用 XPdfForm 来渲染 PDF 表格
XPdfForm form = XPdfForm.FromTemplate(page);
gfx.DrawImage(form, 0, 0);
// 使用 XFont 和 XBrush 在 PDF 表格上绘制文本
XFont font = new XFont("Arial", 10, XFontStyle.Regular);
XBrush brush = XBrushes.Black;
gfx.DrawString("Hello, World!", font, brush, 10, 10);
// 保存渲染后的 PDF 页面到新文件
document.Save("table_modified.pdf"); |