HTML PDF Export and Download Entirely from the Frontend

#5311

This solution allows for dynamically creating a downloadable PDF file of the current page, regardless of the size. Browsers often do not render much that is not visible to the user and this will result blank pages for larger PDFs. This solution navigates the page to ensure there is an actual render before being added to the PDF.

Export to A4 by default, matching current element display width. This means that the output is consistent with the webpage.

This can be used to capture and save complicated HTML content such as charts, images and canvas items. This could also be used for offering a frontend quote form with a download quote option which exports all of the input fields and totals.

				
					/*
Using:
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.0/jspdf.umd.min.js" integrity="sha512-5yTVoG0jFRsDhgYEoKrZCj5Bazxqa0VnETLN7k0SazQcARBsbgrSb6um+YpzWKNKV2kjb8bhna4fDfOk3YPr4Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>

var for old iOS Safari compatibility
*/

function pdfOut(sourceElement, filename, doneEvent) {
    var windowHeight = sourceElement.clientHeight;
    var windowWidth = sourceElement.clientWidth;

    var pageWidth = windowWidth;
    var pageHeight = Math.floor(pageWidth*1.414);

    var queued = 0;
    var currentPage = -1;

    var pdf;


    queued = (windowHeight/pageHeight) + 1;

    this.checkDone = function () {
        if (queued < 1) {
            pdf.save(filename+'.pdf');
            doneEvent();
        } else{
            this.getPage();
        }
    }

    this.getPage = function () {
        currentPage++;
        window.scrollTo(0, currentPage*pageHeight)
        html2canvas(sourceElement,{width: pageWidth, height: pageHeight, y : currentPage*pageHeight}).then(canvas => {
            if (pdf) {
                pdf.addPage([pageWidth, pageHeight])
            } else {
                pdf = new jsPDF("portrait", "pt", [pageWidth, pageHeight], true);
            }

            pdf.addImage(canvas.toDataURL("image/png"), "PNG", 0, 0, pageWidth, pageHeight,'','FAST');

            queued--;
            this.checkDone();
        });
    }


    this.getPage();
}
				
			
Files

No files attached.

Work With Digitally Tailored

If you would like to implement, discuss or add to this project, please contact us.

License

Copyright 2019 - 2020 Digitally Tailored LTD

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.