~alcinnz/harfbuzz-pure

ref: 5b7beb1fa0df5d230a736b8a7eda0fd0d66ef854 harfbuzz-pure/Main.hs -rw-r--r-- 733 bytes
5b7beb1f — Adrian Cochrane Add, test, & fix shaping function. 2 years 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
{-# LANGUAGE PackageImports #-}
{-# LANGUAGE OverloadedStrings #-}
module Main where

import "harfbuzz-pure" Data.Text.Glyphize
import "harfbuzz-pure" Data.Text.Glyphize.Buffer
import "harfbuzz-pure" Data.Text.Glyphize.Font

import System.Environment
import Data.ByteString.Lazy as LBS
import Data.ByteString as BS
import Data.ByteString.Char8 as UTF8

shapeStr font word = shape font $ defaultBuffer {
    text = Right $ LBS.fromStrict $ UTF8.pack word
  }

main :: IO ()
main = do
    print $ guessSegmentProperties $ defaultBuffer { text = Right "Testing, testing"}

    words <- getArgs
    blob <- BS.readFile "assets/Lora-Regular.ttf"
    let font = createFont $ createFace blob 0
    print $ Prelude.map (shapeStr font) words