vote up 1 vote down star

I'm trying to copy a PDF using ABCpdf's AddImageDoc. Doesn't look like any document properties (like "/Rotate") get copied along. It looks like I have to copy these properties manually from old document to new using SetInfo method. Like so:

foreach page...{
    newPdfDoc.Page = newPdfDoc.AddPage();
    newPdfDoc.AddImageDoc(existingPdfDoc, i, null);
    newPdfDoc.SetInfo(newPdfDoc.Page, "/Rotate", existingPdfDoc.GetInfo(existingPdfDoc.Page, "/Rotate"))
}

There are bunch of these properties and I don't want to set these manually. Is there a way to copy all the properties all at once?

flag

73% accept rate

1 Answer

vote up 1 vote down

ABCPdf does not have an iterator for PDF properties

So unless you know all the property names you want to transfer you will need to use another tool to get the property names. You can use the PDFsharp library to read any low level PDF items

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.