I want to add an image to my pdf generated by snappy ,but nothing appear
In my twig :
I am persisting the name of the file in my data base, survey.event.image contain the name of the image
<div style="margin-top: 26px; width: 200px">
<img src="{{ asset('uploads/imagesFile/'~survey.event.image) }}" id="imgEvent">
</div>
I have enabled images =>true
return new Response(
$this->get('knp_snappy.pdf')->getOutputFromHtml($html,array(
'default-header'=>null,
'encoding' => 'utf-8',
'images' => true,
'enable-javascript' => true,
'margin-right' => 7,
'margin-left' =>7,
'javascript-delay' => 5000
)),
200,
array(
'Content-Type' => 'application/pdf',
'Content-Disposition' => 'attachment; filename="file1.pdf"'
)
);