Cómo utilizar correctamente la biblioteca jsPDF

Resuelto Daniela costina Vaduva asked hace 11 años • 7 respuestas

Quiero convertir algunos de mis divs a PDF y probé la biblioteca jsPDF pero sin éxito. Parece que no puedo entender qué necesito importar para que la biblioteca funcione. He revisado los ejemplos y todavía no puedo entenderlo. Intenté lo siguiente:

<script type="text/javascript" src="js/jspdf.min.js"></script>

Después de jQuery y:

$("#html2pdf").on('click', function(){
    var doc = new jsPDF();
    doc.fromHTML($('body').get(0), 15, 15, {
        'width': 170
    });
    console.log(doc);
});

para fines de prueba pero recibo:

"Cannot read property '#smdadminbar' of undefined"

¿ Dónde #smdadminbarestá el primer div del cuerpo?

Daniela costina Vaduva avatar May 31 '13 20:05 Daniela costina Vaduva
Aceptado

puedes usar pdf desde html de la siguiente manera,

Paso 1: agregue el siguiente script al encabezado

<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.min.js"></script>

o descargar localmente

Paso 2: agregue un script HTML para ejecutar el código jsPDF

Personalice esto para pasar el identificador o simplemente cambie #content para que sea el identificador que necesita.

 <script>
    function demoFromHTML() {
        var pdf = new jsPDF('p', 'pt', 'letter');
        // source can be HTML-formatted string, or a reference
        // to an actual DOM element from which the text will be scraped.
        source = $('#content')[0];

        // we support special element handlers. Register them with jQuery-style 
        // ID selector for either ID or node name. ("#iAmID", "div", "span" etc.)
        // There is no support for any other type of selectors 
        // (class, of compound) at this time.
        specialElementHandlers = {
            // element with id of "bypass" - jQuery style selector
            '#bypassme': function (element, renderer) {
                // true = "handled elsewhere, bypass text extraction"
                return true
            }
        };
        margins = {
            top: 80,
            bottom: 60,
            left: 40,
            width: 522
        };
        // all coords and widths are in jsPDF instance's declared units
        // 'inches' in this case
        pdf.fromHTML(
            source, // HTML string or DOM elem ref.
            margins.left, // x coord
            margins.top, { // y coord
                'width': margins.width, // max width of content on PDF
                'elementHandlers': specialElementHandlers
            },

            function (dispose) {
                // dispose: object with X, Y of the last line add to the PDF 
                //          this allow the insertion of new lines after html
                pdf.save('Test.pdf');
            }, margins
        );
    }
</script>

Paso 3: agrega el contenido de tu cuerpo

<a href="javascript:demoFromHTML()" class="button">Run Code</a>
<div id="content">
    <h1>  
        We support special element handlers. Register them with jQuery-style.
    </h1>
</div>

Consulte el tutorial original.

Ver un violín funcionando

Well Wisher avatar Oct 10 '2013 08:10 Well Wisher

Sólo necesitas este enlace jspdf.min.js

Tiene todo en él.

<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.min.js"></script>
user890332 avatar Nov 06 '2014 16:11 user890332

Según la última versión (1.5.3) ya no existe ningún fromHTML()método. En su lugar, debe utilizar el complemento HTML jsPDF, consulte: https://rawgit.com/MrRio/jsPDF/master/docs/module-html.html#~html

También necesitas agregar la biblioteca html2canvas para que funcione correctamente: https://github.com/niklasvh/html2canvas

JS (de documentos API):

var doc = new jsPDF();   

doc.html(document.body, {
   callback: function (doc) {
     doc.save();
   }
});

También puede proporcionar una cadena HTML en lugar de una referencia al elemento DOM.

Vitalii Chmovzh avatar Nov 20 '2019 18:11 Vitalii Chmovzh