All Projects → PhenX → Php Font Lib

PhenX / Php Font Lib

Licence: lgpl-2.1
A library to read, parse, export and make subsets of different types of font files.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to Php Font Lib

Font Spider
Smart webfont compression and format conversion tool
Stars: ✭ 4,550 (+197.39%)
Mutual labels:  ttf, woff, truetype
fontagon
Fontagon is a great tool that easily converts svg into icon font. Fontagon-cli allows faster conversion to commands.
Stars: ✭ 18 (-98.82%)
Mutual labels:  font, woff, ttf
fontfacegen-webpack-plugin
A plugin for webpack that allows you to convert .ttf and .otf files into various other font formats such as .eot, .ttf, .svg, .woff and .woff2 using the existing NPM package fontfacegen.
Stars: ✭ 20 (-98.69%)
Mutual labels:  font, woff, ttf
beatrix
A tool to chop off useless fonts glyphs and convert TTF/OTF into WOFF & WOFF2
Stars: ✭ 22 (-98.56%)
Mutual labels:  woff, ttf
ttf2hershey
Convert True Type Fonts (.ttf) to Hershey vector fonts
Stars: ✭ 29 (-98.1%)
Mutual labels:  font, truetype
font-v
Font version string reporting and modification library + executable tool
Stars: ✭ 15 (-99.02%)
Mutual labels:  font, ttf
FontRegister
FontRegister is a small Windows utility to install fonts and/or repair the font registry via commandline.
Stars: ✭ 17 (-98.89%)
Mutual labels:  font, ttf
pixel font
All-in-one tool for creating TrueType outline fonts from bitmap glyph data, purely written in Elixir.
Stars: ✭ 16 (-98.95%)
Mutual labels:  ttf, truetype
bitsnpicas
Bits'N'Picas - Bitmap & Emoji Font Creation & Conversion Tools
Stars: ✭ 171 (-88.82%)
Mutual labels:  font, truetype
svgs2fonts
npm-svgs2fonts。svg图标转字体图标库(svgs -> svg,ttf,eot,woff,woff2),nodejs。
Stars: ✭ 29 (-98.1%)
Mutual labels:  font, woff
Crimson
The Crimson Text typeface
Stars: ✭ 439 (-71.31%)
Mutual labels:  font, ttf
Last Resort Font
Last Resort Font
Stars: ✭ 462 (-69.8%)
Mutual labels:  font, ttf
MaterialDesign-Font
Distribution Repo for the TTF font
Stars: ✭ 102 (-93.33%)
Mutual labels:  font, ttf
Acy-Font
自制手写字体。A hand-writing font set.
Stars: ✭ 20 (-98.69%)
Mutual labels:  font, ttf
FanWunMing
A Simplified-Chinese-to-Traditional-Chinese font based on GenYoMin, which can handle the one-to-many problem | 繁媛明朝是基於源樣明體開發的簡轉繁字型,能處理一簡對多繁
Stars: ✭ 128 (-91.63%)
Mutual labels:  font, ttf
lv lib freetype
Interface to FreeType to generate font bitmaps run time
Stars: ✭ 41 (-97.32%)
Mutual labels:  font, ttf
InupiaqNumbers
Font for displaying Inupiaq Numerals
Stars: ✭ 27 (-98.24%)
Mutual labels:  font, truetype
Zpix Pixel Font
Zpix (最像素) is a pixel font supporting English, Traditional Chinese, Simplified Chinese and Japanese.
Stars: ✭ 916 (-40.13%)
Mutual labels:  font, ttf
Opentype.js
Read and write OpenType fonts using JavaScript.
Stars: ✭ 3,393 (+121.76%)
Mutual labels:  font, truetype
Codeface
Typefaces for source code beautification
Stars: ✭ 5,612 (+266.8%)
Mutual labels:  font, ttf

PHPUnit tests

PHP Font Lib

This library can be used to:

  • Read TrueType, OpenType (with TrueType glyphs), WOFF font files
  • Extract basic info (name, style, etc)
  • Extract advanced info (horizontal metrics, glyph names, glyph shapes, etc)
  • Make an Adobe Font Metrics (AFM) file from a font

You can find a demo GUI here.

This project was initiated by the need to read font files in the DOMPDF project.

Usage Example

$font = \FontLib\Font::load('../../fontfile.ttf');
$font->parse();  // for getFontWeight() to work this call must be done first!
echo $font->getFontName() .'<br>';
echo $font->getFontSubfamily() .'<br>';
echo $font->getFontSubfamilyID() .'<br>';
echo $font->getFontFullName() .'<br>';
echo $font->getFontVersion() .'<br>';
echo $font->getFontWeight() .'<br>';
echo $font->getFontPostscriptName() .'<br>';
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].