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

27 lines
1.0 KiB
Racket

#lang racket/base
(require xenomorph)
(provide cvt_)
#|
approximates
https://github.com/mbutterick/fontkit/blob/master/src/tables/cvt.js
|#
(define cvt_ (x:struct 'controlValues (x:array #:type int16be)))
(module+ test
(require rackunit racket/serialize "../helper.rkt")
(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) 'cvt_) 'offset))
(define len (hash-ref (hash-ref (hash-ref dir 'tables) 'cvt_) 'length))
(check-equal? offset 4592)
(check-equal? len 26)
(file-position ip 0)
(define table-bytes #"\0\24\0+\0S\0\0\0\20\377&\0\0\1\341\0\v\2\237\0\22\2\340\0\b")
(check-equal? table-bytes (peek-bytes len offset ip))
(define ds (open-input-bytes (peek-bytes len offset ip)))
(define cvt-array '(20 43 83 0 16 -218 0 481 11 671 18 736 8))
(check-equal? (hash-ref (decode cvt_ ds) 'controlValues) cvt-array)
(check-equal? (encode cvt_ (make-hash (list (cons 'controlValues cvt-array))) #f) table-bytes))