htmlToPdf.js 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. import html2Canvas from 'html2canvas'
  2. import JsPDF from 'jspdf'
  3. import { Loading } from 'element-ui';
  4. function footer(doc){
  5. doc.text(150,285,'page ' + doc.page); //print number bottom right
  6. doc.page ++;
  7. };
  8. export default{
  9. install (Vue, options) {
  10. Vue.prototype.getPdf = function (id, title,sgin) {
  11. let loadingInstance = Loading.service({target:'page_main'});
  12. html2Canvas(document.querySelector(`#${id}`), {
  13. // allowTaint: true
  14. useCORS: true,
  15. scale: 1.1,
  16. scrollY: 0,
  17. }).then(function (canvas) {
  18. let contentWidth = canvas.width;
  19. let contentHeight = canvas.height;
  20. let pageHeight = contentWidth / 592.28 * 841.89;
  21. let leftHeight = contentHeight;
  22. let position = 0;
  23. let imgWidth = 595.28;
  24. let imgHeight = 592.28 / contentWidth * contentHeight;
  25. let pageData = canvas.toDataURL('image/jpeg', 1.0);
  26. let PDF = new JsPDF('', 'pt', 'a4');
  27. let logo =document.querySelector(`#logo`);
  28. let pageNumber=1;
  29. if (leftHeight < pageHeight) {
  30. PDF.addImage(pageData, 'JPEG', 0, 0, imgWidth, imgHeight);
  31. PDF.addImage(logo, 'PNG', 10, 6);
  32. } else {
  33. while (leftHeight > 0) {
  34. PDF.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight);
  35. if(pageNumber==1){
  36. pageNumber++
  37. PDF.addImage(logo, 'PNG', 10, 6);
  38. }
  39. // PDF.setFont('msyh')
  40. // PDF.text(500,13,sgin);
  41. leftHeight -= pageHeight;
  42. position -= 841.89;
  43. if (leftHeight > 0) {
  44. PDF.addPage();
  45. }
  46. }
  47. }
  48. PDF.save(title + '.pdf')
  49. loadingInstance.close();
  50. }
  51. )
  52. }
  53. }
  54. }