Documentation

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.

RE Framework API PHPDOC

Example

<?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(7272468648));
    
    
$pdf->send();
?>