main
Matthew Butterick 7 years ago
parent 80b6430031
commit 5bdcee8918

@ -1,2 +1,9 @@
#lang pitfall/racket
(require "font/standard.rkt")
(provide open-pdffont)
(define (open-pdffont document src family id)
(cond
[(string? src)
(when (isStandardFont src)
(make-object StandardFont document src id))]))

@ -64,7 +64,7 @@
;; load the font
[else
(define id (format "F~a" (increment-field! _fontCount this)))
(set-field! _font this (PDFFont-open this src family id))
(set-field! _font this (open-pdffont this src family id))
;; check for existing font familes with the same name already in the PDF
;; useful if the font was passed as a buffer
(let ([font (· this _fontFamilies (· this _font name))])

Loading…
Cancel
Save