A bundle to rasterize web pages with Puppeteer (or other) for Symfony2
$response = new Response(
$this->get(Rasterizer::class)->rasterize(
$this->renderView('Bundle:Folder:template.pdf.twig')
),
200, [
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'attachment; filename="my.pdf"'
]
);
Providers
How to...