1.0.0 • Published 5 years ago

font-reader v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

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>