Note: Reference documentation is coming, however, for now visit our generated documentation or come visit us on irc.
IMPORTANT: The "Packages" selector in the TOP-RIGHT of the linked page allows you to access documentation for additional components.
<?php
require_once('RE/Pdf.php');
$pdf = new RE_Pdf_Document();
$page = $pdf->newPage();
$text = new RE_Pdf_Text('Hello world!');
RE_Pdf_LayoutManager::drawText($text, $page, new RE_Rect(72, 72, 468, 648));
$pdf->send();
?>