Skip to content

dongxiaosun/svg-to-iconfont

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

svg-to-iconfont

Read a set of SVG icons and ouput a TTF/EOT/WOFF/SVG font, Generator of fonts from SVG icons. 将svg文件转换为字体图标

Install

npm i svg-to-iconfont

Usage

const svgtoiconfont = require("../src");
const path = require("path");
const rootPath = path.resolve(process.cwd(), "test");
const svgtoiconfont = require("svg-to-iconfont");
 
svgtoiconfont({
  dist: path.resolve(rootPath, "dist"), // output path(输出文件路径)
  src: path.resolve(rootPath, "svg"), // svg path(svg资源路径)
  fontName: "icomoon", // font name (字体名称)
  classNamePrefix: "e6-icon", // class name prefix (class前缀)
}).then(() => {
  console.log('done!');
});

About

Converts SVG to TTF/EOT/WOFF/SVG format fonts.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published