Fast Financial Processing and Turnaround
Extract data from financial PDF forms instantly by converting them to HTML forms with FormVu.

Don’t Kill Form Completion Rates with PDF Forms
PDF forms are incompatible with HTML. Financial clients need to install extra software or print out PDF forms, hence, retail banking and consumer finance face a challenge to improve form completion rates.
Data collection is another headache, as staffs need to either manually extract data or scan and collect it from printed PDF forms.
Convert Fillable PDF Financial Forms into HTML Forms
FormVu is an SDK for developers to convert fillable PDF forms into HTML forms
HTMLConversionOptions conversionOptions = new HTMLConversionOptions();
// Set conversion options here e.g. conversionOptions.setImageScale(1.2f);
FormViewerOptions viewerOptions = new FormViewerOptions();
// Set FormViewer options here e.g. viewerOptions.setEnableFDFJavaScript(true);
File input = new File("C:/MyDocument.pdf");
File output = new File("C:/MyOutputDirectory/");
PDFtoHTML5Converter converter = new PDFtoHTML5Converter(input, output, conversionOptions, viewerOptions);
try {
converter.convert();
} catch (PdfException e) {
e.printStackTrace();
}
java -Xmx512M -jar formvu.jar /inputDirectory/ /outputDirectory/
# Or add in custom settings to adjust the output to your preference
java -Dorg.jpedal.pdf2html.exampleSettingOne=<value> -Dorg.jpedal.pdf2html.exampleSettingTwo=<value> -Xmx512M -jar formvu.jar /inputDirectory/ /outputDirectory/
<?php
// PHP is one of the many languages we support for the web service. Check our support pages to see the full extent
require_once __DIR__ . "/PATH/TO/vendor/autoload.php";
use IDRsolutions\IDRCloudClient;
$endpoint = "https://cloud.idrsolutions.com/cloud/" . IDRCloudClient::INPUT_FORMVU;
$parameters = array(
//'token' => 'Token', // Required only when connecting to the IDRsolutions trial and cloud subscription service
'input' => IDRCloudClient::INPUT_UPLOAD,
'file' => __DIR__ . 'path/to/file.pdf'
);
$results = IDRCloudClient::convert(array(
'endpoint' => $endpoint,
'parameters' => $parameters
));
IDRCloudClient::downloadOutput($results, __DIR__ . '/');
echo $results['downloadUrl'];
What Can FormVu Help Financial Organizations Achieve?
Increase Form Completion Rates and Customer Experience
FormVu removes barriers like needing PDF software which allows more users to complete forms correctly and on time. Clients can directly fill in forms anywhere, anytime, on any digital device (pc, phone, tablet). This is especially helpful for retail banking and consumer finance, where tech-savviness varies.
With FormVu, financial organizations will have a cutting-edge advantage in customer experience and workflow compared to competitors.
Faster Processing and Turnaround
Data can be submitted directly from the HTML form, allowing for instant capture into financial company's back-end systems (CRMs, loan origination, compliance systems, etc).
With FormVu, there is no need to process scanned documents or manually extract data, speeding up workflows. After clients submit to a URL, developers can see the data from the backend.
Easier Integration with Financial Platform
Compared to native HTML forms, PDF forms are trickier to integrate into web applications.
With FormVu, financial organizations can integrate the converted HTML forms into a web application workflow while retaining all their interaction and functionality as well as the look of original PDF forms. Here's an example video of how we integrate it into our website.
Developer-Focused Solution
Simple Technical Documents
FormVu is run and marketed by a group of geeks instead of sales people. We like to keep everything super simple and straightforward.
Read FormVu documentFast Support Responses
Our support channels are monitored by our developers, so that the communications are made easily. You can get in touch with us via Discord or online support service and receive response quickly.
Contact UsAdvanced Data Processing
Developers are expected to self-host the output file and you can customize how data is submitted (e.g. as HTML form, JSON, XML, or even as a PDF). FormVu also runs without making external calls, giving you full control of your data.
Learn More