ubuntu下转ttf, otf为woff文件

来源:互联网 发布:网络与端口有何区别 编辑:程序博客网 时间:2024/06/05 11:50


sudo apt-get install fontforge

npm install font-converter

node
var fontConverter = require('font-converter');fontConverter("path/to/sourceFontFile.ttf", "path/to/destinationFontFile.woff", function (err) {    if(err) {        // There was an error    } else {        // All good, path/to/destinationFontFile.woff contains the transformed font file    }})

0 0
原创粉丝点击