app = $app; $pdf = new PhraseaPDF("P", "mm", "A4", true, 'UTF-8', false); $pdf->setApp($app); $pdf->SetAuthor("Phraseanet"); $pdf->SetTitle("Phraseanet Print"); $pdf->SetDisplayMode("fullpage", "single"); $this->pdf = $pdf; } public function render() { $this->pdf->Close(); return $this->pdf->Output('', 'S'); } }