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.
26 lines
600 B
CoffeeScript
26 lines
600 B
CoffeeScript
PDFDocument = require 'pdfkit'
|
|
fs = require 'fs'
|
|
|
|
# test ss03 (alternate ampersand form)
|
|
|
|
make = (doc) ->
|
|
|
|
# Register a font name for use later
|
|
doc.registerFont('the-font', 'assets/fira.ttf')
|
|
|
|
# Set the font, draw some text
|
|
doc.font('the-font')
|
|
.fontSize(100)
|
|
.text('A&B', 100, 100, {width: false})
|
|
.text('X&Y', 100, 200, {width: false, features: ["ss03"]})
|
|
|
|
doc.end()
|
|
|
|
|
|
doc = new PDFDocument({compress: no})
|
|
doc.pipe(fs.createWriteStream('test19.pdf'))
|
|
make doc
|
|
|
|
doc = new PDFDocument({compress: yes})
|
|
doc.pipe(fs.createWriteStream('test19c.pdf'))
|
|
make doc |