1.0.5 • Published 4 years ago

@hayes0724/web-font-converter v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Web Font Converter

npm (scoped) build node-current (scoped) GitHub issues GitHub license

Convert font files to different formats. Primarily used for creating woff/woff2 files for use on the web.

Table of Contents

  1. Install
  2. Formats
  3. API
    1. Convert All Fonts(#Convert All Fonts)
    2. Convert Font(#Convert Font)
    3. Fonts
  4. CLI

Install

Install with npm:

npm install --save-dev @hayes0724/web-font-converter

Install with yarn:

yarn add @hayes0724/web-font-converter --dev

Formats

  1. ttf -> woff
  2. ttf -> woff2
  3. svg -> ttf
  4. svg -> ttf -> woff
  5. svg -> ttf -> woff2
  6. otf -> svg
  7. otf -> svg -> ttf
  8. otf -> svg -> ttf -> woff
  9. otf -> svg -> ttf -> woff2

API

Convert All Fonts

Converts all fonts that match input formats to the specified output format

const { convertAllFonts } = require('@hayes0724/web-font-converter')

// This will convert all ttf fonts to both woff and woff2
convertAllFonts({
    pathIn: './fonts',
    pathOut: './output',
    outputFormats: ['.woff', '.woff2'],
    inputFormats: ['.ttf'],
    debug: false
})

// This will convert all ttf and svg fonts to both woff and woff2
convertAllFonts({
    pathIn: './fonts',
    pathOut: './output',
    outputFormats: ['.woff', '.woff2'],
    inputFormats: ['.ttf', '.svg'],
    debug: false
})

// If you provide no options it will run with the defaults below
convertFont({})
OptionDescriptionDefault
pathIn{String} Path to font foldercurrent directory
pathOut{String} Path to store converted fontscurrent directory
outputFormats{Array} Font types to convert to'.woff', '.woff2'
inputFormats{Array} Font type to convert from'.ttf'
debug{Boolean} extra outputfalse

Input Formats: otf, svg, ttf

Output Formats: svg, ttf, woff, woff2

Convert Font

Converts a single font, uses file extension to determine conversion.

const { convertFont } = require('@hayes0724/web-font-converter')

// This will convert the font from ttf to woff and place font in output folder
convertFont(`./fonts/input/Roboto-Regular.ttf`, `./fonts/output/Roboto-Regular.woff`)
// This will convert the font from svg to woff2 and place font in the same folder
convertFont(`./Roboto-Regular.svg`, `./Roboto-Regular.woff2`)

Fonts

Convert a single font from one format to another. This is used by convertFont and convertAllFonts, it's useful for creating your own scripts for processing.

const fonts = require('@hayes0724/web-font-converter/src/lib/fonts')

// fonts[inputKey].convert[outputKey](inputFile, outputFile)
fonts.ttf.convert.woff2('myfile.ttf', 'myfont.woff2')

CLI

Converts a single font, uses file extension to determine conversion.

font-convert --pathIn='./fonts/Roboto-Regular.ttf' --pathOut='./fonts/Roboto-Regular.woff'
OptionDescription
--pathIn{String} Input font file
--pathOut{String} Output font file

Input Formats: otf, svg, ttf

Output Formats: svg, ttf, woff, woff2