我有一个要求,我必须合并多个 PDF 文档并添加带有一些文本的页面。例如,我已经从一个 PDF 复制了页面,现在我必须添加一个带有一些文本的页面,然后我需要从第二个 PDF 复制页面,然后我需要再次添加一个带有一些文本的页面......
我曾尝试合并 PDF,但它只是合并我想在每个 PDF 文档之后添加一些文本的 PDF。
我想使用 iTextSharp。下面是代码片段:
// 第 1 步:创建文档对象 Document document = new Document();
// step 2: we create a writer that listens to the document
PdfCopy writer = new PdfCopy(document, new FileStream(outFile, FileMode.Create));
if (writer == null)
{
return;
}
// step 3: we open the document
document.Open();
foreach (string fileName in fileNames)
{
// we create a reader for a certain document
PdfReader reader = new PdfReader(fileName);
reader.ConsolidateNamedDestinations();
// step 4: we add content
for (int i = 1; i <= reader.NumberOfPages; i++)
{
PdfImportedPage page = writer.GetImportedPage(reader, i);
writer.AddPage(page);
}
//This commented part is not working
////Add a new page to the pdf file
//document.NewPage();
//Paragraph paragraph = new Paragraph();
//Font titleFont = new Font(iTextSharp.text.Font.FontFamily.HELVETICA
// , 15
// , iTextSharp.text.Font.BOLD
// , BaseColor.BLACK
// );
//Chunk titleChunk = new Chunk("Comments", titleFont);
//paragraph.Add(titleChunk);
//writer.Add(paragraph);
//paragraph = new Paragraph();
//Font textFont = new Font(iTextSharp.text.Font.FontFamily.HELVETICA
// , 12
// , iTextSharp.text.Font.NORMAL
// , BaseColor.BLACK
// );
//Chunk textChunk = new Chunk("Hello", textFont);
//paragraph.Add(textChunk);
//writer.Add(paragraph);
//document.Add(paragraph);
reader.Close();
}
// step 5: we close the document and writer
writer.Close();
document.Close();
提前致谢。