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.
20 lines
535 B
Racket
20 lines
535 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 "Some text with an embedded font" 100 100])
|
|
|
|
;; 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) |