kempsteven / vue-html2pdf

vue-html2pdf converts any vue component or element into PDF, vue-html2pdf is basically a vue wrapper only and uses html2pdf.js behind the scenes.
https://www.npmjs.com/package/vue-html2pdf
MIT License
440 stars 74 forks source link

Blank pdf when load image using base64 #122

Open justmealf opened 2 years ago

justmealf commented 2 years ago

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"

`