PHP code example of knplabs / knp-snappy-bundle
1. Go to this page and download the library: Download knplabs/knp-snappy-bundle library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once ('vendor/autoload.php' );
knplabs / knp-snappy-bundle example snippets
return [
Knp\Bundle\SnappyBundle\KnpSnappyBundle::class => ['all' => true ],
];
$knpSnappyImage->generate('http://www.google.fr' , '/path/to/the/image.jpg' );
$knpSnappyPdf->generate('http://www.google.fr' , '/path/to/the/file.pdf' );
$knpSnappyPdf->generate(array ('http://www.google.fr' , 'http://www.knplabs.com' , 'http://www.google.com' ), '/path/to/the/file.pdf' );
$knpSnappyPdf->generateFromHtml(
$this ->renderView(
'MyBundle:Foo:bar.html.twig' ,
array (
'some' => $vars
)
),
'/path/to/the/file.pdf'
);
use Knp \Bundle \SnappyBundle \Snappy \Response \JpegResponse ;
use Symfony \Bundle \FrameworkBundle \Controller \AbstractController ;
class SomeController extends AbstractController
{
public function imageAction (\Knp\Snappy\Image $knpSnappyImage)
{
$html = $this ->renderView('MyBundle:Foo:bar.html.twig' , array (
'some' => $vars
));
return new JpegResponse(
$knpSnappyImage->getOutputFromHtml($html),
'image.jpg'
);
}
}
use Knp \Bundle \SnappyBundle \Snappy \Response \PdfResponse ;
use Symfony \Bundle \FrameworkBundle \Controller \AbstractController ;
class SomeController extends AbstractController
{
public function pdfAction (\Knp\Snappy\Pdf $knpSnappyPdf)
{
$html = $this ->renderView('MyBundle:Foo:bar.html.twig' , array (
'some' => $vars
));
return new PdfResponse(
$knpSnappyPdf->getOutputFromHtml($html),
'file.pdf'
);
}
}
use Knp \Bundle \SnappyBundle \Snappy \Response \PdfResponse ;
use Symfony \Bundle \FrameworkBundle \Controller \AbstractController ;
class SomeController extends AbstractController
{
public function pdfAction (\Knp\Snappy\Pdf $knpSnappyPdf)
{
$pageUrl = $this ->generateUrl('homepage' , array (), true );
return new PdfResponse(
$knpSnappyPdf->getOutput($pageUrl),
'file.pdf'
);
}
}