PDF Server

https://hub.docker.com/repository/docker/formio/pdf-server

The Form.io PDF Solution is a powerful tool with two options: PDF Server and PDF Server Plus. Please see the below description of each to see which aligns best with the requirements of the Application being built.

The Form.io PDF server is currently not compatible with Apple M1 chips and ARM64 architecture. The guide below will detail how to run this server on other systems like an Intel Mac or Linux machine.

PDF Basic

The Use Case: PDF print out of the JSON-driven dynamic webform submissions filled out by the end-user within your application.

PDF Plus

The Use Case: Forms are required to be on a pixel-perfect PDF background with a dynamic JSON form overlay on top of the PDF.

A PDF template designer that allows customization of the data and layout for PDF downloads generated from webform submissions made by the end-user

PDF-First forms can also be presented to the user as responsive web forms, but enable the ability to print the Submission to the pixel-perfect PDF background.

Contact sales@form.io for more information on the PDF Plus Server

Deploying the PDF Server in a Private Cloud or On-Premise Environment

Recommended CPU/memory config is 2 CPU cores and 4GB of memory.

A common deployment command for the PDF server looks as follows.

docker run -itd \
  -e "LICENSE_KEY=YOURLICENSE" \
  -e "MONGO=mongodb://mongo:27017/formio" \
  -e "FORMIO_S3_SERVER=minio" \
  -e "FORMIO_S3_PORT=9000" \
  -e "FORMIO_S3_BUCKET=formio" \
  -e "FORMIO_S3_KEY=CHANGEME" \
  -e "FORMIO_S3_SECRET=CHANGEME" \
  --network formio \
  --link formio-mongo:mongo \
  --link formio-minio:minio \
  --restart unless-stopped \
  --name pdf-server \
  -p 4005:4005 \
  formio/pdf-server;

Which uses the following Environment Variables.

Environment Variables for Deployment

Required Environment Variables

The following environment variables are always required.

File Storage Environment Variables

The following environment variables involve the PDF Plus Server's file storage integration for storing PDF files. The PDF server currently supports minio, Amazon S3, and Azure Blob.

Optional Environment Variables

The following environment variables are optional.

Configure Portal for PDF Server

Now that you have the PDF server operational as well as the API Server, the next thing that needs to happen is to configure the Form.io Portal to use the correct DNS URL for the PDF Server URL. This is necessary because the "internal" DNS URL is used within the Enterprise Server configurations, and we now need to let the Portal know how to directly communicate with the PDF Server. To set this up, you will first need to navigate to your Project Settings and then click on PDF Server configuration page. Here you will then need to provide the Public DNS URL to the pdf server as follows.

The PDF Server URL field shown in Project Settings was deprecated in 8.0.1 and removed from the interface. It is now fully managed by the PDF_SERVER environment variable that is set on the API server.

Once you have done this, you should now be able to upload an existing PDF form, where it will then convert that PDF document into a Form.io webform overlay on top of that PDF form.

PDF Server Fine Tuning

This section covers some aspects of fine tuning a PDF server. If you want to speed up your deployment or you want to configure your deployment for large PDF handling, you might want to give a look at this section.

Mounting /tmp directory to RAM

If you have a virtual machine with large amount of RAM available, you can benefit from it by mounting container's /tmp directory to RAM. You can to this by adding --tmpfs /tmp:rw parameter to your docker run command. This will allow PDF Server to speed up IO processes by storing files in RAM instead of disk.

Configuring file cache time

File cache is a disk cache for HTML files used for PDF downloads. Default cache time is one hour. If you have a lot of PDF first forms with different PDFs in the background and you expect that all that forms will be printed to PDF very often, you might want to configure file cache time to eliminate disk memory limit reach. To do this you need to add FILE_CACHE_TIME environment variable to PDF Server config. The value should be number of milliseconds. The smaller cache time will result to less disk space usage and lower performance. The bigger cache time will result to more disk space usage and increased performance.

Configuring default viewer

If you prefer to use custom viewer rather that default viewer for PDF downloads, you can increase PDF download performance by adding PAGE_POOL_DEFAULT_VIEWER an environment variable to PDF server config. Its value should be the URL of your custom viewer.

Configuring timeouts

Here is the list of all configurable timeouts and their purposes:

PDF Server Plus Auto-Conversion

The PDF Server Plus includes Auto-Conversion of existing fillable and non-fillable PDF Forms. Using AWS Textract for PDF First Forms that do not have any metadata that can be read for conversion, the PDF Server will auto-detect Field Input Types, Labels and more and convert the PDF to a dynamic Form.io Form!

AWS Textract Integration

Please note that the Textract feature is exclusively compatible with AWS S3 bucket storage infrastructure. Unfortunately, it is NOT compatible with Minio or other object storage providers. It is imperative to utilize AWS S3 for object storage in order to leverage the functionalities of Textract effectively.

After setting up PDF Server it is possible to integrate with AWS Textract to enable Formfields Recognition feature.

Steps to integrate:

  1. Create IAM role with AmazonTextractServiceRole & AmazonSNSFullAccess policies

    • Create a Custom trust policy with the following JSON structure.

    {
        "Version": "2012-10-17",
        "Statement": [
            {
                "Sid": "",
                "Effect": "Allow",
                "Principal": {
                    "Service": "textract.amazonaws.com"
                },
                "Action": "sts:AssumeRole"
            }
        ]
    }
    • Next add your AmazonTextractServiceRole & AmazonSNSFullAccess permissions.

    • Add a Role name and then press Create Role in the bottom right corner.

  2. Verify that the AWS User has permissions for textract:StartDocumentAnalysis & textract:GetDocumentAnalysis

    • This can be done with a similar inline policy like outlined above but for the security credentials belonging the security credentials being utilized.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "textract:StartDocumentAnalysis",
                "textract:GetDocumentAnalysis"
            ],
            "Resource": "*"
        }
    ]
}
  1. Create AWS Simple Notification Service topic and save its ARN

  2. Add the following environment variables to the configuration:

4. After starting the PDF environment with new environment variables, go to the previously created SNS topic page and create a subscription:

  • Leave Topic ARN as-is

  • In Protocol field choose HTTPS

  • In Endpoint field type *public URL of your environment. Example: https://my.formioapi.com/pdf/pdf/sns

  1. After configuration you can check the status of formfields recognition by visiting URL {{apiServerUrl}}/pdf/pdf/sns/recognizeFormfieldsStatus

  1. Validate that PDF Plus upload works with a Non-fillable PDF and has Textract perform field recognition on the non-fillable pdf form. An example non-fillable pdf form has been provided below.

In the case of misconfiguration, you will not be able to upload a PDF file.

Last updated