Pdf 다운로드를 위한 라이브러리이다.
npm 으로도 제공해 주니 node.js 를 사용한다면 npm으로 설치해 주도록 한다.
jspdf 는 기본적인 pdf를 만들어주는 라이브러리이며, jspdf-autotable은 테이블을 pdf로 만들 때 사용된다.
설치
$ npm install jspdf
$ npm install jspdf-autotable # table 저장시에만 설치
사용법
let Pdf = require('jspdf');
let PdfAutoTable = require('jspdf-autotable');
...
var columns = [ {title: "ID", dataKey: "id"}, {title: "Name", dataKey: "name"}, {title: "Country", dataKey: "country"}, ... ]; var rows = [ {"id": 1, "name": "Shaw", "country": "Tanzania", ...}, {"id": 2, "name": "Nelson", "country": "Kazakhstan", ...}, {"id": 3, "name": "Garcia", "country": "Madagascar", ...}, ... ]; // Only pt supported (not mm or in) var doc = new Pdf('p', 'pt'); doc.autoTable(columns, rows, { styles: {fillColor: [100, 255, 255]}, columnStyles: { id: {fillColor: 255} }, margin: {top: 60}, addPageContent: function(data) { doc.text("Header", 40, 30); } }); doc.save('table.pdf');
- orientation - The default value for orientation is "portrait". We can set it to "landscape" if we want a different page orientation.
- unit - We can tell jsPDF in which units we want to work. Use one of the following: "pt" (points), "mm" (default), "cm", "in".
- format - It's default page format. It can be "a3", "a4" (default), "a5", "letter", "legal".
객체를 생성할 때 jspdf 를 import 한 것으로 사용하기는 하지만 autoTable 을 사용하기 위해서는 두 라이브러리를 모두 import 해야 한다.
단점
검색을 하면 UTF-8 사용자들을 위해 대부분 pdfmake 를 추천해 준다.
html2canvas 이용
canvas 로 이미지를 만든 후, 그 이미지를 pdf로 만드는 방법도 있다.
'JavaScript > React' 카테고리의 다른 글
[React] 속도 향상 (0) | 2017.07.25 |
---|---|
[ReactJS] add component in list (0) | 2016.12.29 |
[ECMAScript6] get max number in list (0) | 2016.12.28 |
[React] window.print (0) | 2016.11.30 |
[ReactJS/ECMA6] Arrow 함수와 파라미터 전달 (0) | 2016.11.28 |
댓글