~alcinnz/fontconfig-pure

ref: d0b230b84ce2cc02133c24f51173f95cd41ddb6e fontconfig-pure/lib/Graphics/Text/Font/Choose/Weight.hs -rw-r--r-- 517 bytes
d0b230b8 — Adrian Cochrane Implement Stylist traits for FontConfig patterns! 7 months ago
                                                                                
18b29da8 Adrian Cochrane
1
2
3
4
5
6
7
8
9
10
11
{-# LANGUAGE CApiFFI #-}
module Graphics.Text.Font.Choose.Weight where

foreign import capi "fontconfig/fontconfig.h FcWeightFromOpenTypeDouble"
    weightFromOpenTypeDouble :: Double -> Double
foreign import capi "fontconfig/fontconfig.h FcWeightToOpenTypeDouble"
    weightToOpenTypeDouble :: Double -> Double
foreign import capi "fontconfig/fontconfig.h FcWeightFromOpenType"
    weightFromOpenType :: Int -> Int
foreign import capi "fontconfig/fontconfig.h FcWeightToOpenType" 
    weightToOpenType :: Int -> Int