You might find it as duplicate of this Question, but I didnt get any solution there. My scenario is like I am creating a PDF from existing PDF with some edits. That all works fine. My question is I want to add metadata, table of contents, bookmarks, what ever you call that is in metadata of PDF to newly created PDF. I am not able to understand XMP format as suggested here. Is there any way I can directly add TOC to new PDF. I am using following function but it is not working at all.

CGPDFContextAddDocumentMetadata(pdfContext, contdata);

Can any one suggest me right direction to dig in. Any 3rd party tool will also do. I tried podofo but I m not getting any way for porting it in ios.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted
+50

The XMP metadata and TOC/bookmarks are 2 different things. While the TOC in a PDF file can be read using the CGPDF* functions, it cannot be duplicated in another PDF file because the CGPDF* API does not let you create PDF objects and insert them in a PDF file.

link|improve this answer
Thanks for your response.. Is there any way around though which I can accomplish this?? – Dimple Panchal Nov 26 '11 at 4:20
feedback

I recently did a lot of merging pdf's together and also populating form data. I would check out PDF Toolkit as it really helped me out. You can execute it from within your code.

link|improve this answer
How to integrate it in iphone sdk. I m not getting any way to do this. If you have done these in iphone, can u suggest me what to do? and how to do. I have previously integrated a C++ library in iphone sdk, but for this I m not getting how to use it – Dimple Panchal Dec 1 '11 at 4:12
pdflabs.com/docs/install-pdftk I use PDFTK on a server. I pass it the things it needs, and it produces the pdf. – Cymbals Dec 1 '11 at 15:37
btw: there is an install for Mac OS X to run locally, but I'd go with the server solution instead of worrying about it locally. – Cymbals Dec 1 '11 at 15:50
After setting it up on a server, you could ajax the file(s) via base64 encoded strings in POST, process the virtual file and echo out a base65 encoded string back, and decode it into a pdf. – Cymbals Dec 1 '11 at 17:08
1  
This loop from the server will be a costly effort. I can see only sys commands that are executed in this toolkit, how to execute it in c++?? – Dimple Panchal Dec 2 '11 at 4:14
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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