diff options
| author | Eugen Wissner <belka@caraus.de> | 2024-02-04 11:07:15 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2024-02-04 11:07:15 +0100 |
| commit | 3160ceab080fca8fef0cf2cf196b46284d15c19f (patch) | |
| tree | e9849111325d8431b39618f190a2f0f7a570945f /README.md | |
| parent | a34b46e1b553623d5dc385fc8e235df808fbadb2 (diff) | |
| download | fountainhead-3160ceab080fca8fef0cf2cf196b46284d15c19f.tar.gz | |
Create a Metrics module
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..006cc49 --- /dev/null +++ b/README.md @@ -0,0 +1,39 @@ +# TrueType font parser. + +Fountainhead is a TrueType and OpenType font parser. Its main +purpose is to extract information from the fonts to help to +embed these fonts into PDF documents. It also supports dumping +font information to the screen. + +There is also an executable to dump fonts. + +## Installation + +Add the library as dependency to your project. +Alternatively build and run the executable with: + +```sh +cabal build +``` + +The binary can be executed with: + +```sh +cabal run fountainhead -- +``` + +or installed locally and executed just as: + +```sh +fountainhead +``` + +See + +```sh +fountainhead --help +``` + +for help. + +## Usage |
