Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 267 Bytes

dompdf.md

File metadata and controls

12 lines (8 loc) · 267 Bytes

DOMPDF

Generate PDF

      /* @var $pdfService PdfService */
      $pdfService = $this->get('pm.pdf');
      
      $html = $this->renderView("ACMEDemoBundle:Demo:pdf.html.twig", array('foo' => 'bar'));
      
      return $pdfService->get($html);