Elity / FontReader

Read font information from ttf/ttc file with browser. Online preview

Home Page:https://raw.githack.com/Elity/FontReader/master/test.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FontReader

read font information from ttf/ttc file for browser

Usage

with es6

import { TTFReader, TTCReader } from './bundle';
// for ttf file
new TTFReader(buffer).getAttrs();
// for ttc file
new TTCReader(buffer).getAttrs();

with script tag

<script src="./bundle.js"></script>
<script>
  // for ttf file
  new FontReader.TTFReader(buffer).getAttrs();
  // for ttc file
  new FontReader.TTCReader(buffer).getAttrs();
</script>

About

Read font information from ttf/ttc file with browser. Online preview

https://raw.githack.com/Elity/FontReader/master/test.html


Languages

Language:JavaScript 94.2%Language:HTML 5.8%