Quiero convertir algunos de mis divs en PDF y probé la biblioteca jsPDF pero sin éxito. Parece que no puedo entender lo que necesito importar para que la biblioteca funcione. He revisado los ejemplos y todavía no puedo entenderlo. He intentado 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);
});
con fines de prueba pero recibo:
"Cannot read property '#smdadminbar' of undefined"
donde #smdadminbar
está el primer div del cuerpo.
javascript
jquery
html
jspdf
Daniela costina Vaduva
fuente
fuente
fromHTML
o por qué no está documentado en los documentos jsPDF: " Estamos cerrando este problema, porque ya no admitiremos más desde HTML y addHTML " ( del número 516 )Respuestas:
puede 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 que funciona
fuente
Solo necesitas este enlace jspdf.min.js
Tiene todo en ella.
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.2/jspdf.min.js"></script>
fuente
Error in function FileSaver@http://mrrio.github.io/jsPDF/dist/jspdf.debug.js:5875:18: get_URL(...).createObjectURL is not a function
, lo mismo si uso la versión de bower. ¿Cualquier pista?Esto es finalmente lo que hizo por mí (y desencadena una disposición):
function onClick() { var pdf = new jsPDF('p', 'pt', 'letter'); pdf.canvas.height = 72 * 11; pdf.canvas.width = 72 * 8.5; pdf.fromHTML(document.body); pdf.save('test.pdf'); }; var element = document.getElementById("clickbind"); element.addEventListener("click", onClick);
<h1>Dsdas</h1> <a id="clickbind" href="#">Click</a> <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.3/jspdf.min.js"></script>
ko.bindingHandlers.generatePDF = { init: function(element) { function onClick() { var pdf = new jsPDF('p', 'pt', 'letter'); pdf.canvas.height = 72 * 11; pdf.canvas.width = 72 * 8.5; pdf.fromHTML(document.body); pdf.save('test.pdf'); }; element.addEventListener("click", onClick); } };
fuente
pdf.save("myfile.pdf", function(){ alert("pdf generation/save finished!"); });
¿No debería utilizar también la biblioteca jspdf.plugin.from_html.js? Además de la biblioteca principal (jspdf.js), debe usar otras bibliotecas para "operaciones especiales" (como jspdf.plugin.addimage.js para usar imágenes). Consulte https://github.com/MrRio/jsPDF .
fuente
primero, debes crear un controlador.
var specialElementHandlers = { '#editor': function(element, renderer){ return true; } };
luego escriba este código en el evento de clic:
doc.fromHTML($('body').get(0), 15, 15, { 'width': 170, 'elementHandlers': specialElementHandlers }); var pdfOutput = doc.output(); console.log(">>>"+pdfOutput );
asumiendo que ya ha declarado la variable doc. Y luego ha guardado este archivo pdf usando File-Plugin.
fuente
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#~htmlTambién debe agregar la biblioteca html2canvas para que funcione correctamente: https://github.com/niklasvh/html2canvas
JS (de los documentos de la 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.
fuente
¿Qué tal en vuejs cómo es aplicable?
function onClick() { var pdf = new jsPDF('p', 'pt', 'letter'); pdf.canvas.height = 72 * 11; pdf.canvas.width = 72 * 8.5; pdf.fromHTML(document.body); pdf.save('test.pdf'); }; var element = document.getElementById("clickbind"); element.addEventListener("click", onClick);
<h1>Dsdas</h1> <a id="clickbind" href="#">Click</a> <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.3/jspdf.min.js"></script>
fuente