Hufflepdf/src/PDF/Font.hs

10 lines
175 B
Haskell

module PDF.Font (
Font(..)
) where
import Data.ByteString (ByteString)
import PDF.Object (StringObject)
class Font a where
decode :: a -> StringObject -> ByteString