~jaro/balkon

ref: 4581edf44a98c61335ee92eb08f9e0b46a49c16c balkon/test/Data/Text/ParagraphLayout/FontLoader.hs -rw-r--r-- 1.2 KiB
4581edf4Jaro Reduce test dependencies on fonts. 1 year, 1 month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module Data.Text.ParagraphLayout.FontLoader
    (loadPlexSansArabicRegular
    ,loadUbuntuRegular
    )
where

import Data.ByteString (readFile)
import Data.Text.Glyphize
    (Font
    ,FontOptions(optionPPEm, optionScale)
    ,createFace
    ,createFontWithOptions
    ,defaultFontOptions
    )
import Prelude (IO, Int, Maybe(Just), String, Word, return, ($))
import System.FilePath ((</>))

-- TODO: Figure out if this affects hinting!
testingPixelSize :: (Word, Word)
testingPixelSize = (24, 24)

-- This controls the output units.
-- The default is "unscaled", which uses the value of `faceUpem` in both axes.
testingScale :: (Int, Int)
testingScale = (1000, 1000)

loadPlexSansArabicRegular :: IO Font
loadPlexSansArabicRegular = loadFontFromFile $
    "assets" </> "fonts" </> "plex" </> "IBMPlexSansArabic-Regular.ttf"

loadUbuntuRegular :: IO Font
loadUbuntuRegular = loadFontFromFile $
    "assets" </> "fonts" </> "ubuntu" </> "Ubuntu-R.ttf"

loadFontFromFile :: String -> IO Font
loadFontFromFile path = do
    ttf <- readFile path
    let face = createFace ttf 0
    let font = createFontWithOptions (defaultFontOptions {
        optionPPEm = Just testingPixelSize,
        optionScale = Just testingScale
    }) face
    return font