blob: fd9315dbc4b79d704dae902ff51d2ec73891b288 [file] [log] [blame]
<?php
require 'tutorial_autoload.php';
// Convert some input RSTfile to docbook
$document = new ezcDocumentRst();
$document->loadFile( './article/introduction.txt' );
$pdf = new ezcDocumentPdf();
$pdf->options->errorReporting = E_PARSE | E_ERROR | E_WARNING;
$pdf->createFromDocbook( $document->getAsDocbook() );
file_put_contents( __FILE__ . '.pdf', $pdf );
?>