penkzhou / plugin_html_to_pdf

Flutter plugin for generating PDF files from HTML
https://pub.dev/packages/html_to_pdf
MIT License
4 stars 2 forks source link

flutter web support? #2

Open Fevzettin1 opened 4 months ago

Fevzettin1 commented 4 months ago

Does anyone have any suggestions for web support?

penkzhou commented 3 months ago

I'll look into it.

Fevzettin1 commented 3 months ago

I'll look into it.

I'm so glad to hear that, I hope you get it sorted soon.

ekuleshov commented 13 hours ago

I'll look into it.

For the web support you might be able to use jsPDF. Though it would render html into an embedded image.

It needs these two dependencies:

<script src="jspdf.umd.js"></script>
<script src="html2canvas.js"></script>

then the following js code produces PDF document:

window.jsPDF = window.jspdf.jsPDF;
var doc = new jsPDF();
doc.html(document.body, {
   callback: function (doc) {
     doc.save();
   },
   width: 135,
   windowWidth: 600
});