Using PDFG in AEM Forms using-pdfg-in-aem-forms

Demonstrating Drag and Drop capability to create PDF using AEM Forms

PDFG stands for PDF Generation. This means you can convert a variety of file formats into PDF. The most common ones are Microsoft Office documents. PDFG has been part of AEM Forms since 6.1.
The javadoc for PDFG API is listed here

The assets associated with this article will allow you to drag and drop MS office documents or JPG file into the drop zone of the HTML page. Once the document is dropped, it invokes the PDFG service and convert the document into PDF and save it on the file system of AEM Server.

To install the demo assets, please perform the following steps

  1. Configure PDFG as mentioned in this document here.
  2. Please follow the appropriate documentation related to your AEM Forms version.
  3. Import and install assets related to this article using the package manager.
  4. Navigate to post.jsp in your CRX
  5. Change the save location as per your preference(line 9)
  6. Save your changes.
  7. Open the html page for dragging and dropping files for conversion.
  8. Drop a word file or jpg into the drop zone.
  9. The input document is converted into PDF and saved in the same location as specified in point 4.

The following code snippet shows the usage of PDFG service to convert files to PDF

com.adobe.pdfg.service.api.GeneratePDFService pdfService = sling.getService(com.adobe.pdfg.service.api.GeneratePDFService.class);
System.out.println("Got PDF Service");
java.util.Map map = pdfService.createPDF(uploadedDocument,fileName,"","Standard","No Security", null, null);
recommendation-more-help
8de24117-1378-413c-a581-01e660b7163e