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.
18 lines
344 B
CoffeeScript
18 lines
344 B
CoffeeScript
8 years ago
|
PDFDocument = require 'pdfkit'
|
||
|
fs = require 'fs'
|
||
|
|
||
|
# Create a new PDFDocument
|
||
|
doc = new PDFDocument({compress: no})
|
||
|
doc.pipe(fs.createWriteStream('test1.pdf'))
|
||
|
|
||
|
# Draw a triangle and a circle
|
||
|
doc.save()
|
||
|
.moveTo(100, 150)
|
||
|
.lineTo(100, 250)
|
||
|
.lineTo(200, 250)
|
||
|
.fill("#FF3300")
|
||
|
|
||
|
doc.circle(280, 200, 50)
|
||
|
.fill("#6600FF")
|
||
|
|
||
|
doc.end()
|