I currently have an application which takes user data and compiles a multitude of PDF documents, feeding the templates to PDFtk along with FDF forms on disk, created using a modified version of Justin Koivisto's createFDF library. So far this works quite well, with the only problem that everything is being generated on disk with a fairly significant overhead.
Setup: Microsoft IIS6 server running on Windows Server 2003, PHP version 5.3.2 running as a FastCGI module. Dependencies: PDFtk.
Workflow: user inserts data, which is loaded in session and then parsed by a generate.php file (code trimmed down as much as possible, so non-pertinent things like file sorting or cleanup are not shown).
<?php
// File taking care of the document generation.
session_start();
set_time_limit(0);
$root = getenv("DOCUMENT_ROOT");
// Modded createFDF is loaded by generaDocumenti.php.
require_once $root . '/libraries/generaDocumenti.php';
$docLanguage = $_POST['docLanguage'];
$templateBasePath = "$root/templates/";
// For each session element, if the array contains a filename this means that
// it's a PDF waiting to be generated.
foreach ($_SESSION as $s) {
if (is_array($s) && isset($s['fileName'])) {
$fn = $s['fileName'];
$templateFullPath = $templateBasePath . "{$fn}Template.pdf";
//doGenerateFdf is contained in generaDocumenti.php.
if (doGenerateFdf($s, $templateFullPath)) {
exec ("pdftk.exe {$templateFullPath} fill_form $outDir".$_SESSION['userName'].$fn
.".fdf output $outDir".$fn.'.pdf');
// $outDir is defined elsewhere, trimmed down for simplicity.
}
}
}
In this block of code, the application runs every template through the generaDocumenti.php library, which actually just preprocesses the form data and passes it through createFDF:
<?php
// Function to generate the FDF form fields.
function doGenerateFdf($formData, $templatePath) {
$ret=false;
$fileName="";
$outDir = getOutDir();
$fileName = $formData['fileName'];
// Process stuff
$index=$formData['index'];
$sourceTemplate = $templatePath;
$outputDocument = $outDir . $_SESSION['userName'].$index;
foreach($formData as $k => $v) {
if ($v != '' && !is_array($v)) {
$formData[$k] = trim(html_entity_decode($v, ENT_QUOTES), ' -.,/');
}
}
require_once "$root/libraries/createFDF.php";
$fdf_file=$_SESSION['userName'].$fileName.'.fdf';
// the directory to write the result in
$fdf_dir = $outDir;
// generate the file content
$fdf_data=createFDF($sourceTemplate,$formData);
if($fp=fopen($fdf_dir.$fdf_file,'w')){
fwrite($fp,$fdf_data,strlen($fdf_data));
$ret=true;
}else{
die('Unable to create file: '.$fdf_dir.$fdf_file);
}
fclose($fp);
return $ret;
}
createFDF is documented here: http://koivi.com/fill-pdf-form-fields/
After this, there's another script which uses pdfTK to concatenate the contents of the files and outputs them directly as a stream to whatever needs to read the finished PDF.
<?php
$outDir = getOutDir();
$doc = passthru("pdftk.exe $outDir".$_SESSION['userName']."*.pdf cat output - compress");
header("Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0");
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="output.pdf"');
echo $doc;
Again, lots of stuff has been trimmed down.
This already works properly, but what I want to accomplish is to process everything in memory to avoid hard disk activiity (for both performance and security reasons), so here's what I had in mind:
- Move FDF generation to PHP memory, rather than the filesystem;
- Fill the PDF in RAM, sort of like it's currently done by PDFtk (if at all possible by piping RAM contents to PDFtk, but I don't think that's possible under Windows; feel free to surprise me on this point). Form fields must remain editable;
- Output the individual documents to concatenate to a variable rather than filesystem, and then concatenate that one.
So far, I only tried accomplishing this last point, but concatenating the output received from shell_exec is resulting in a malformed PDF.
Any and all suggestions on how to do at least part of this are much appreciated, thanks in advance for your response.