kempsteven/vue-html2pdf

Blank pdf when load image using base64

justmealf opened this issue · 0 comments

Hi, i've try to generate pdf with images inside, sometimes it's work and sometimes i got blank

I've got data using this
$images = 'data:image/jpeg;base64,'.base64_encode(file_get_contents($dat->full_path));

$dat->full_path contains images path/url

Parsing to view
`
<img
class="content"
style="width: 350px; height: 400px;"
:src="items.base64_img"

`