GitXplorerGitXplorer
g

fontview

public
320 stars
37 forks
11 issues

Commits

List of commits on branch main.
Unverified
b8f4b51aa5f98eea3de785b9d12ae3271b5febc4

[README.md] update repository path (#62)

cchrissimpkins committed 5 years ago
Unverified
c911ccda5e58770158a2e23c4bd718307b6c3df3

Add a spin button next to the axis slider (#61)

kkhaledhosny committed 5 years ago
Unverified
bb8c19e9ea7df7ae4552f032ea31603ad6bb583b

Update various thirdparty modules (#60)

kkhaledhosny committed 5 years ago
Verified
4db7e5cb0df0e49c2f3e8e09d86f88ecfb0fff85

Merge pull request #56 from chrissimpkins/patch-1

aanthrotype committed 5 years ago
Verified
a432694b56f7878740fb06e8c29232bef67c8800

[README.md] fix Travis CI badge

cchrissimpkins committed 5 years ago
Verified
4d6f3fdf19b98a18944655be73457c446c765614

Merge pull request #48 from schriftgestalt/master

mmarekjez86 committed 6 years ago

README

The README file for this repository.

FontView Build Status

“FontView” is a little demo app that shows the contents of a font file. It opens *.ttf, *.otf, *.ttc, *.otc, *.pfa, and *.pfb files. To render text, FontView uses the open-source libraries FreeType, HarfBuzz, and Raqm. FontView is not an official Google product; use it at your own risk.

Screenshot

You’re very welcome to contribute changes, for example if you’d like porting the tool to other platforms than macOS. (Because the program only calls cross-platform libraries, porting should actually be quite easy). Likewise, please don’t hesitate to add new features; simply send a GitHub pull request when your change is ready.

Building on macOS

$ git clone --recursive https://github.com/googlefonts/fontview.git;
# if you forget the recursive arg, run
# git submodule update --init --recursive
$ cd fontview
$ python2.7 build.py && ./build/FontView.app/Contents/MacOS/fontview

Building on Linux

You need to first install wxWidgets as well as latest versions of FreeType, HarfBuzz and FriBiDi.

$ git clone https://github.com/googlefonts/fontview.git
$ cd fontview
$ git submodule init
$ git submodule update src/third_party/raqm/libraqm
$ python build.py && ./build/fontview