Skip to content

Instantly share code, notes, and snippets.

View boanergepro's full-sized avatar
🤓
Flutter <3

Antony Carrizo boanergepro

🤓
Flutter <3
View GitHub Profile
@boanergepro
boanergepro / pdf.js
Created September 14, 2017 14:08 — forked from danawoodman/pdf.js
Example of using pdfkit in Node.js
var fs = require('fs');
var PDFDocument = require('pdfkit');
var pdf = new PDFDocument({
size: 'LEGAL', // See other page sizes here: https://github.com/devongovett/pdfkit/blob/d95b826475dd325fb29ef007a9c1bf7a527e9808/lib/page.coffee#L69
info: {
Title: 'Tile of File Here',
Author: 'Some Author',
}
});