You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
263 B
CoffeeScript
11 lines
263 B
CoffeeScript
8 years ago
|
PDFDocument = require 'pdfkit'
|
||
|
fs = require 'fs'
|
||
|
|
||
|
# Create a new PDFDocument
|
||
8 years ago
|
doc = new PDFDocument({compress: no})
|
||
8 years ago
|
doc.pipe(fs.createWriteStream('test0.pdf'))
|
||
8 years ago
|
doc.end()
|
||
8 years ago
|
|
||
8 years ago
|
doc = new PDFDocument({compress: yes})
|
||
|
doc.pipe(fs.createWriteStream('test0c.pdf'))
|
||
8 years ago
|
doc.end()
|