diff options
| author | Eugen Wissner <belka@caraus.de> | 2023-11-17 09:54:26 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2023-11-17 09:54:26 +0100 |
| commit | 344467b8508b86838ba652f719a017f3415c9a96 (patch) | |
| tree | e2a0e3b33ceec8560715b702e60b28a386be85e3 /src/Graphics/Fountainhead/Type.hs | |
| parent | ac03d3236deececd13660295d8528e2d0de639ed (diff) | |
| download | fountainhead-344467b8508b86838ba652f719a017f3415c9a96.tar.gz | |
Dump the hhea table
Diffstat (limited to 'src/Graphics/Fountainhead/Type.hs')
| -rw-r--r-- | src/Graphics/Fountainhead/Type.hs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Graphics/Fountainhead/Type.hs b/src/Graphics/Fountainhead/Type.hs index 118df6b..06274dc 100644 --- a/src/Graphics/Fountainhead/Type.hs +++ b/src/Graphics/Fountainhead/Type.hs @@ -6,11 +6,13 @@ module Graphics.Fountainhead.Type ( F2Dot14(..) , Fixed32(..) + , FWord + , UFWord , ttfEpoch ) where import Data.Int (Int16) -import Data.Word (Word32) +import Data.Word (Word16, Word32) import Data.Time (Day(..)) import Data.Time.Calendar.OrdinalDate (fromOrdinalDate) @@ -20,5 +22,8 @@ newtype Fixed32 = Fixed32 Word32 newtype F2Dot14 = F2Dot14 Int16 deriving (Eq, Show) +type FWord = Int16 +type UFWord = Word16 + ttfEpoch :: Day ttfEpoch = fromOrdinalDate 1904 1 |
