1
votes

I have loaded some PDF files into MarkLogic with MLCP, which were then converted to XML by the CPF default PDF conversion. Some of the PDFs were fillable, but none of the content that was filled out was included in the conversion. Is there a way to convert that?

1

1 Answers

0
votes

Are these PDF forms that have been filled by a user? If so, some converters don't carry through PDF form data. PDFTables may work - the API allows you to convert your PDFs to XML including any form data.

As an example in Python (any language can be used):

import pdftables_api

c = pdftables_api.Client('my-api-key')

c.xml('input.pdf', 'output.xml')