Download the PHP package rev42/revpdf-lib without Composer
On this page you can find all versions of the php package rev42/revpdf-lib. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download rev42/revpdf-lib
More information about rev42/revpdf-lib
Files in rev42/revpdf-lib
Download rev42/revpdf-lib
More information about rev42/revpdf-lib
Files in rev42/revpdf-lib
Vendor rev42
Package revpdf-lib
Short Description PDF generating library
License GPL-3.0
Homepage http://www.revpdf.org
Package revpdf-lib
Short Description PDF generating library
License GPL-3.0
Homepage http://www.revpdf.org
Please rate this library. Is it a good library?
Informations about the package revpdf-lib
RevPDFLib
RevPDFLib provides the building block to create PDF file for RevPDF web application.
RevPDFLib parses an XML file (build manually or using RevPDF) and generates PDF file. This library can be used as a standalone application.
RevPDFLib
takes a XML file as an input and output a PDF file.
"Hello World" example:
<?xml version="1.0" encoding="UTF-8"?>
<RevPDFLib>
<font name="courier" size="16" textColor="#3366FF" style="B" />
<details height="20" isVisible="1" backgroundColor="#FFF">
<textfield format="text" x="0" y="0" height="10" width="40" border="1" forecolor="#3366FF" backcolor="#FFFF00" zindex="0">
<font isUnderline="false" isBold="true" isItalic="true" fontName="courier" size="14" />
<![CDATA[Hello World!]]>
</textfield>
</details>
</RevPDFLib>
Calling RevPDFLib is really easy:
defined('BASE_DIR') || define('BASE_DIR', dirname(__file__) . '/../');
require BASE_DIR . 'vendor/autoload.php';
$lib = new RevPDFLib\Application();
$data = simplexml_load_file('helloworld.xml');
$lib->export($data);
Please read the MANUAL for further explanations (how to install, how to create a compatible xml file...)
All versions of revpdf-lib with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.3.3
rev42/tfpdf Version 1.0
jwage/easy-csv Version dev-master
symfony/http-kernel Version ~2.2
symfony/event-dispatcher Version ~2.2
symfony/dependency-injection Version ~2.2
symfony/config Version ~2.2
rev42/tfpdf Version 1.0
jwage/easy-csv Version dev-master
symfony/http-kernel Version ~2.2
symfony/event-dispatcher Version ~2.2
symfony/dependency-injection Version ~2.2
symfony/config Version ~2.2
The package rev42/revpdf-lib contains the following files
Loading the files please wait ....