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/test20.rkt

25 lines
583 B
Racket

#lang racket/base
(require pitfall/pdftest)
6 years ago
;; subset OTF font
(define-runtime-path otf-path "assets/charter.otf")
;; embed otf
(define (proc doc)
;; Register a font name for use later
6 years ago
(send doc register-font "the-font" (path->string otf-path))
;; Set the font, draw some text
(send* doc
[font "the-font"]
6 years ago
[font-size 40]
[text "Embedded OTF" 100 100]))
;; test against non-subsetted font version
(define-runtime-path this "test20rkt.pdf")
6 years ago
(make-doc this #f proc #:test #f)
6 years ago
#;(define-runtime-path that "test20crkt.pdf")
#;(make-doc that #t proc #:pdfkit #f)