Hi All
I am having trouble flattening a pdf.
Using LiveCycle it would be done using the OutputService.generatePDFOutput operation
However the generatePDFOutput method available on com.adobe.fd.output.api.OutputService does not have a TransformationFormat that can be specified to a flat pdf, and its options object also does not seem to have anything that will help with this.
So my question is, using the com.adobe.fd library, how would you take a pdf Document that has fields etc, and flatten it?
Thanks!
Mahendran
Solved! Go to Solution.
OK, I've put together a quick sample that seems to work. Key point is that you use the generatePDFOutput method, but pass in null as the XML data.
Here's a snippet:
... flattenXfaForm(File inXfa, String outputFolder) {
....
Document doc=null;
String xfaName = inXfa.getName().toString();
PDFOutputOptions options = new PDFOutputOptions();
options.setContentRoot(inXfa.getParentFile().toString());
doc=outputService.generatePDFOutput(xfaName, null, options);
....
}
Mahen Govender wrote...
Hi All
I am having trouble flattening a pdf.
Using LiveCycle it would be done using the OutputService.generatePDFOutput operation
However the generatePDFOutput method available on com.adobe.fd.output.api.OutputService does not have a TransformationFormat that can be specified to a flat pdf, and its options object also does not seem to have anything that will help with this.
So my question is, using the com.adobe.fd library, how would you take a pdf Document that has fields etc, and flatten it?
Thanks!
Mahendran
Any ideas on this? It Must be possible to flatten a pdf surely.... :/
M
Views
Replies
Total Likes
Hi Mahen,
com.adobe.fd.output.api.OutputService does not take TransformationFormat as input. It assumes that TransformationFormat is PDF and thus always generates a flat PDF from input PDF which has fields etc. Sample usage of this service can be found at https://helpx.adobe.com/aem-forms/6-2/aem-document-services-programmatically.html#generatePDFOutput
Thanks
Nitin
Views
Replies
Total Likes
Hi Mahendran
After checking the docs, it seems that flattening is available in the OSGi Assembler service. Check out https://helpx.adobe.com/aem-forms/6-2/assembler-service.html
But there's a caveat: "The Assembler service uses the Output service to flatten dynamic XFA forms. If the Assembler service processes a DDX that requires it to flatten an XFA dynamic form and the Output service is unavailable, an exception is thrown. The Assembler service can flatten an Acrobat form or a static XFA form without using the Output service."
Greg
Views
Replies
Total Likes
OK, I've put together a quick sample that seems to work. Key point is that you use the generatePDFOutput method, but pass in null as the XML data.
Here's a snippet:
... flattenXfaForm(File inXfa, String outputFolder) {
....
Document doc=null;
String xfaName = inXfa.getName().toString();
PDFOutputOptions options = new PDFOutputOptions();
options.setContentRoot(inXfa.getParentFile().toString());
doc=outputService.generatePDFOutput(xfaName, null, options);
....
}
GregFullard wrote...
OK, I've put together a quick sample that seems to work. Key point is that you use the generatePDFOutput method, but pass in null as the XML data.
Here's a snippet:
... flattenXfaForm(File inXfa, String outputFolder) {
....
Document doc=null;
String xfaName = inXfa.getName().toString();
PDFOutputOptions options = new PDFOutputOptions();
options.setContentRoot(inXfa.getParentFile().toString());
doc=outputService.generatePDFOutput(xfaName, null, options);
....
}
This works brilliantly, but the process seems to make any barcodes on the form illegible.
Any idea how to flatten a pdf, and maintain its barcodes?
Views
Replies
Total Likes
Views
Likes
Replies