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

22 lines
536 B
Racket

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