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/fontland/fontland/table/hhea.rkt

40 lines
2.0 KiB
Racket

#lang racket/base
(require xenomorph sugar/unstable/dict)
(provide hhea)
(define hhea (x:struct
(dictify
'version int32be
'ascent int16be ;; Distance from baseline of highest ascender
'descent int16be ;; Distance from baseline of lowest descender
'lineGap int16be ;; Typographic line gap
'advanceWidthMax uint16be ;; Maximum advance width value in 'hmtx' table
'minLeftSideBearing int16be ;; Maximum advance width value in 'hmtx' table
'minRightSideBearing int16be ;; Minimum right sidebearing value
'xMaxExtent int16be
'caretSlopeRise int16be ;; Used to calculate the slope of the cursor (rise/run); 1 for vertical
'caretSlopeRun int16be ;; 0 for vertical
'caretOffset int16be ;; Set to 0 for non-slanted fonts
'reserved (x:array #:type int16be #:length 4)
'metricDataFormat int16be ;; 0 for current format
'numberOfMetrics uint16be ;; Number of advance widths in 'hmtx' table
)))
(module+ test
(require rackunit "../helper.rkt"
racket/serialize)
(define ip (open-input-file charter-path))
(define dir (deserialize (read (open-input-file charter-directory-path))))
(define offset (hash-ref (hash-ref (hash-ref dir 'tables) 'hhea) 'offset))
(define length (hash-ref (hash-ref (hash-ref dir 'tables) 'hhea) 'length))
(check-equal? offset 292)
(check-equal? length 36)
(define table-bytes #"\0\1\0\0\3\324\377\22\0\0\4\311\377_\377`\4\251\0\1\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\345")
(file-position ip 0)
(check-equal? (peek-bytes length offset ip) table-bytes)
(define table-data (decode hhea table-bytes))
(check-equal? (hash-ref table-data 'ascent) 980)
(check-equal? (hash-ref table-data 'descent) -238)
(check-equal? (hash-ref table-data 'numberOfMetrics) 229))