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
524 B
Racket
21 lines
524 B
Racket
#lang racket/base
|
|
(require pitfall/pdftest)
|
|
|
|
(define-runtime-path charter-path "assets/charter.ttf")
|
|
|
|
(define (proc doc)
|
|
;; Register a font name for use later
|
|
(register-font doc "Charter" (path->string charter-path))
|
|
|
|
;; Set the font, draw some text
|
|
[font doc "Charter"]
|
|
[font-size doc 25]
|
|
[text doc "Åcçénts äre în" 100 100])
|
|
|
|
;; test against non-subsetted font version
|
|
(define-runtime-path this "test13rkt.pdf")
|
|
(make-doc this #f proc)
|
|
|
|
(define-runtime-path that "test13crkt.pdf")
|
|
(make-doc that #t proc)
|