These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Merge Mark-Up

dtfhome
Registered: Apr 20 2011
Posts: 4

I am looking to accomplish the following, can anyone provide some assistance:
• We have developed a website front-end that allows a user to upload multiple “comment-enabled” PDF documents.
• Each of the documents originated from the same source file and only differ in the mark-up that had been applied using Adobe Reader.
• We want to Programmatically merge the comments of each child PDF back to the parent\

Thanks in advance.

My Product Information:
Reader, Windows
try67
Expert
Registered: Oct 30 2008
Posts: 2398
Are you using Reader or Acrobat?

- AcrobatUsers Community Expert - Contact me personally at try6767 [at] gmail [dot] com
Check out my custom-made scripts website: http://try67.blogspot.com

dtfhome
Registered: Apr 20 2011
Posts: 4
Users use Reader to mark-up the PDF with comments.

I need to be able to programatically merge multiple PDF's from the same source together to show all mark-up in one. I am looking for some type of developer API possibly?
try67
Expert
Registered: Oct 30 2008
Posts: 2398
But are YOU using Reader or Acrobat? not the users. The reason I'm asking is because there's a big difference in the capabilities of both applications.

- AcrobatUsers Community Expert - Contact me personally at try6767 [at] gmail [dot] com
Check out my custom-made scripts website: http://try67.blogspot.com

dtfhome
Registered: Apr 20 2011
Posts: 4
that's thing, I am using neither. I am a web developer and want to programatically merge the mark-ups with some type of API -- in other words, merge on the website without having to use a reader or acrobat client.
UVSAR
Expert
Registered: Oct 29 2008
Posts: 1357
There are several libraries for working with PDF files in PHP, Java, etc including the Adobe PDF Library, but handling Reader-enabled PDF files is not trivial, given they're signed by the Adobe shared key.

Assuming you're Reader-extending the original PDF file using Acrobat rather than LiveCycle, then you will need to be very aware of the Acrobat EULA, which places a 500-response limit on reception of data from any Reader-extended PDF file, irrespective of how circuitous that reception method happens to be. Your web-based system will certainly be covered, and you absolutely cannot run Acrobat on the server as a CGI application.

Processing PDF files on a server is really the domain of LiveCycle, hence the restrictions within the Acrobat EULA.

dtfhome wrote:
that's thing, I am using neither. I am a web developer and want to programatically merge the mark-ups with some type of API -- in other words, merge on the website without having to use a reader or acrobat client.
gkaiseril
Expert
Registered: Feb 23 2006
Posts: 4307
Your profile says you are using Reader.

Sounds like you need to specifically target Developers or SDK coders.

Have you looked at Pdftk?
.
Have you looked at the Acrobat SDK kit?

George Kaiser

UVSAR
Expert
Registered: Oct 29 2008
Posts: 1357
gkaiseril wrote:
Have you looked at the Acrobat SDK kit?
Don't bother - if you're working on a webserver, you are [b]not[/b] permitted to install Acrobat so the SDK is irrelevant.

dtfhome
Registered: Apr 20 2011
Posts: 4
thank you for the responses