html -> pdf 다운로드 (html2canvas + jsPDF)
데이터의 결과를 나타내는 페이지를 보고서 형식 비슷하게 출력을 해야하는데 html 내용을 pdf로 다운로드 할 수 있는 라이브러리가 있어서 정리하는 글이다. html2canvas html2canvas 라이브러리는 이름 대로 html에 있는 내용을 canvas에 옮겨담아 사진처럼 찍어내주는 라이브러리이다. html2canvas.js 공식 홈페이지에서 볼 수 있듯이 샘플 예제도 심플하다. (다운로드를 하기위해 스크립트를 일부 추가) Hello world! function saveAs(uri, fileName) { const link = document.createElement("a"); link.href = uri; link.download = fileName; document.body.appendChild..