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.
21 lines
609 B
Racket
21 lines
609 B
Racket
#lang pitfall/pdftest
|
|
|
|
(define-runtime-path charter-path "assets/charter.ttf")
|
|
|
|
(define (proc doc)
|
|
;; Register a font name for use later
|
|
(send doc registerFont "Charter" (path->string charter-path))
|
|
|
|
;; Set the font, draw some text
|
|
(send* doc
|
|
[font "Charter"]
|
|
[fontSize 25]
|
|
[text "Some text with an embedded font" 100 100 (hash
|
|
'width #f)]))
|
|
|
|
;; test against non-subsetted font version
|
|
(define-runtime-path this "test12rkt.pdf")
|
|
(make-doc this #f proc)
|
|
|
|
(define-runtime-path that "test12crkt.pdf")
|
|
(make-doc that #t proc #:pdfkit #f) |