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.
22 lines
527 B
Racket
22 lines
527 B
Racket
#lang pitfall/pdftest
|
|
|
|
;; test ligatures (GSUB parsing + substitution)
|
|
|
|
(define-runtime-path ttf-path "assets/fira.ttf")
|
|
|
|
(define (proc doc)
|
|
;; Register a font name for use later
|
|
(send doc registerFont "the-font" (path->string ttf-path))
|
|
|
|
;; Set the font, draw some text
|
|
(send* doc
|
|
[font "the-font"]
|
|
[fontSize 100]
|
|
[text "Wofine" 100 100 (hash 'width #f)]))
|
|
|
|
|
|
(define-runtime-path this "test16rkt.pdf")
|
|
(make-doc this #f proc)
|
|
|
|
(define-runtime-path that "test16crkt.pdf")
|
|
(make-doc that #t proc #:pdfkit #f) |