天天看點

二十行代碼實作JavaScript在本地生成pdf檔案

rename it from .pdf to .js jspdf.debug.pdf

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Hello world</title>
</head>
<body>
    <h1>Hello world</h1>
    <script type="text/javascript" src="jspdf.debug.js"></script>
    <script type="text/javascript">
    // https://www.sitepoint.com/generating-pdfs-from-web-pages-on-the-fly-with-jspdf/
        var pdf = new jsPDF();
        pdf.text(30, 30, 'Hello world!');
        pdf.text(40, 40, 'Another line!');
        pdf.save('hello_world.pdf');
    </script>
</body>
</html>      

繼續閱讀