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.
typesetting/pitfall/ptest/test12.rkt

20 lines
535 B
Racket

5 years ago
#lang racket/base
(require pitfall/pdftest)
7 years ago
(define-runtime-path charter-path "assets/charter.ttf")
7 years ago
(define (proc doc)
;; Register a font name for use later
5 years ago
(register-font doc "Charter" (path->string charter-path))
;; Set the font, draw some text
5 years ago
[font doc "Charter"]
[font-size doc 25]
[text doc "Some text with an embedded font" 100 100])
7 years ago
;; test against non-subsetted font version
(define-runtime-path this "test12rkt.pdf")
(make-doc this #f proc)
7 years ago
7 years ago
(define-runtime-path that "test12crkt.pdf")
6 years ago
(make-doc that #t proc)