vue html 페이지 pdf로 다운로드

1487 단어 정리
  • 설치npm install html2canvas jspdf --save
  • 인용import html2Canvas from "html2canvas"import JsPDF from "jspdf"
  • 트리거 이벤트에 쓰기
  •   var title = 'pdf  '
          html2Canvas(document.querySelector('#pdfDom'), {
            allowTaint: true
          }).then(function (canvas) {
            let contentWidth = canvas.width
            let contentHeight = canvas.height
            let pageHeight = contentWidth / 592.28 * 841.89
            let leftHeight = contentHeight
            let position = 0
            let imgWidth = 595.28
            let imgHeight = 592.28 / contentWidth * contentHeight
            let pageData = canvas.toDataURL('image/jpeg', 1.0)
            let PDF = new JsPDF('', 'pt', 'a4')
            if (leftHeight < pageHeight) {
              PDF.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight)
            } else {
              while (leftHeight > 0) {
                PDF.addImage(pageData, 'JPEG', 0, position, imgWidth, imgHeight)
                leftHeight -= pageHeight
                position -= 841.89
                if (leftHeight > 0) {
                  PDF.addPage()
                }
              }
            }
            PDF.save(title + '.pdf')
          })
    

    양쪽 여백을 남겨서imgWidth를 수정하고ddImage에서 x방향 매개 변수로 원하는 여백을 설정합니다
    (35       )
    var imgWidth = 525.28;
    pdf.addImage(pageData, 'JPEG', 35, position, imgWidth, imgHeight);
    

    좋은 웹페이지 즐겨찾기