This tutorial is intended for the PHP programmer who needs to incorporate PDF generation in a script without using external libraries such as PDFlib (often unavailable due to licensing restrictions or lack of funds). This tutorial will cover only the basics, which hopefully will give you a good start. PDF has a vast set of features and possibilities which can not be covered in a short tutorial. If you need more than what is covered here, you might want to look at some similar yet more complete solutions available, such as the excellent work done by Olivier Plathey on the FPDF class (http://fpdf.org), on which this tutorial is based. Of course, you may wish to take your own route and for that there is also the PDF reference (be warned: it’s 1,172 pages!) Basic familiarity with using PHP classes is assumed. Knowledge of PDF file structure is not required, as all references are explained.
The final lines to be printed are the PDF trailer.
/* Print trailer. */ $this->_out('trailer'); $this->_out('<<'); /* The total number of objects. */ $this->_out('/Size ' . ($this->_n + 1)); /* The root object. */ $this->_out('/Root ' . $this->_n . ' 0 R'); /* The document information object. */ $this->_out('/Info ' . ($this->_n - 1) . ' 0 R'); $this->_out('>>'); $this->_out('startxref'); $this->_out($start_xref); // Where to find the xref. $this->_out('%%EOF'); $this->_state = 3; // Set the document state to // closed. }
Now let's look at the new functions we’ve met in this document closing method. The _newobj() function above is used simply to keep track of objects added to the document.
function _newobj
() { /* Increment the object count. */ $this->_n++; /* Save the byte offset of this object. */ $this->_offsets[$this->_n] = strlen($this->_buffer); /* Output to buffer. */ $this->_out($this->_n . ' 0 obj'); }
The _putPages() function handles the output of the page content. Here we go through the $_pages array that has been buffering the page content separately, and output it to the main buffer.