我为输入文件创建了一个阅读器,为标记文件创建了一个阅读器。我不确定是否应该遍历注释然后逐个添加到输出中,或者是否有办法从标记文件中提取所有注释并将它们添加到保留其x,z坐标的输入文件中。
我有以下代码,我不知道在评论部分做什么。 AddAnnotation方法仅将PdfAnnotation作为输入,但我不确定如何将PdfDictionary转换为PdfAnnotaiton。
class Program
{
public static string inputFile = @"E:\pdf-sample.pdf";
public static string markupFile = @"E:\StampPdf.pdf";
public static string outputFile = @"E:\pdf.pdf";
public static PdfReader inputReader = new PdfReader(inputFile);
public static PdfReader markupReader = new PdfReader(markupFile);
static void Main(string[] args)
{
PdfDocument inputDoc = new PdfDocument(inputReader, new PdfWriter(outputFile));
PdfDocument markupDoc = new PdfDocument(markupReader);
int n = inputDoc.GetNumberOfPages();
for (int i = 1; i <= n; i++)
{
PdfPage page = inputDoc.GetPage(i);
PdfDictionary markupPage = markupDoc.GetFirstPage().GetPdfObject();
PdfArray annots = markupPage.GetAsArray(PdfName.Annots);
if(annots != null)
{
for(int j=0; j < annots.Size(); j++)
{
PdfDictionary annotItem = annots.GetAsDictionary(i);
//******
//page.AddAnnotation(?);
//******
}
}
}
inputDoc.Close();
}
}
在iText7中找到新的GetAnnotations方法后,我尝试了另一种变体。这里代码运行正常,但我无法打开O / P文件并得到文件已损坏的错误。此外,当我运行inputDoc.Close()而不是下面给出的最后一行时,我得到一个错误“Pdf间接对象属于其他PDF文档。将对象复制到当前的pdf文档。“
PdfReader ireader = new PdfReader(inputFile);
PdfDocument inputDoc = new PdfDocument(ireader, new PdfWriter(outputFile));
PdfReader mreader = new PdfReader(markupFile);
PdfDocument markupDoc = new PdfDocument(mreader);
var annots = markupDoc.GetFirstPage().GetAnnotations();
if (annots != null)
{
for (int j = 0; j < annots.Count(); j++)
{
inputDoc.GetFirstPage().AddAnnotation(annots[j]);
}
}
ireader.Close();
mreader.Close();
markupDoc.Close();
inputDoc.SetCloseWriter(true);
答案 0 :(得分:1)
也许试试这个:
if (annots != null)
{
for (int j = 0; j < annots.Size(); j++)
{
PdfDictionary annotItem = annots.GetAsDictionary(i);
PdfLineAnnotation lineAnnotation = new PdfLineAnnotation(annotItem);
page.AddAnnotation(lineAnnotation);
}
}
如果它不起作用,这里有一些文档(不幸的是在Java中)
如果您可以使用您希望复制的注释发布Pdf - 也许我可以调试并尝试更多内容。