環境 - PDFsharp庫,Visual Studio 2012和C#作爲語言。PDFsharp編輯pdf文件
我想:
- 讀Test1.pdf(寬= 17英寸,高度 - 11英寸)與1頁
- 一些文本添加到它
- 保存爲其他文件( Test2.pdf)
我能夠做到以下所有。但是當我打開Test2.pdf文件時,頁面的大小已經減小到寬度= 11英寸,高度 - 11英寸。 我正在使用的這些PDF文件是我從互聯網下載的產品規格表。我相信這隻發生在某些類型的文件上,我不確定如何區分這些文件。
代碼如下:
//File dimentions - Width = 17 inches, Height - 11 inches (Tabloid Format)
PdfDocument pdfDocument = PdfReader.Open(@"D:\Test1.pdf", PdfDocumentOpenMode.Modify);
PdfPage page = pdfDocument.Pages[0];
XGraphics gfx = XGraphics.FromPdfPage(page);
XFont font = new XFont("Verdana", 20, XFontStyle.BoldItalic);
gfx.DrawString("Hello, World!", font, XBrushes.Black, new XRect(0, 0, page.Width, page.Height), XStringFormats.Center);
//When the file is saved dimentions change to - Width = 11 inches, Height - 11 inches
pdfDocument.Save(@"D:\Test2.pdf");
我已上載這裏的文件Test1.pdf
======================== ================================================== ========
如所建議的由PDFsharp隊的代碼應該如下:
PdfDocument PDFDoc = PdfReader.Open(@"D:\Test1.pdf", PdfDocumentOpenMode.Import);
PdfDocument PDFNewDoc = new PdfDocument();
for (int Pg = 0; Pg < PDFDoc.Pages.Count; Pg++)
{
PdfPage pp = PDFNewDoc.AddPage(PDFDoc.Pages[Pg]);
XGraphics gfx = XGraphics.FromPdfPage(pp);
XFont font = new XFont("Arial", 10, XFontStyle.Regular);
gfx.DrawString("Hello, World!", font, XBrushes.Black, new XRect(0, 0, pp.Width, pp.Height), XStringFormats.BottomCenter);
}
PDFNewDoc.Save(@"D:\Test2.pdf");
嘗試修改從PDFNewDoc.Pages(未PDFDoc.Pages)的頁面 - 或採取()由AddPage返回的頁面。 –
我試過運行這段代碼。它說PdfReader在當前上下文中不存在? –