1 Star 0 Fork 1

yunhaiai/jsPDF

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
makeFonts.js 790 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env node
'use strict'
const fs = require('fs');
const path = require('path');
const minimist = require('minimist');
const minimistOptions = {
string: ['out'],
alias: {
o: 'out'
},
'default': {
'out': './dist/default_vfs.js'
}
};
const cliOptions = minimist(process.argv.slice(2), minimistOptions);
const inputPath = path.resolve((cliOptions._ && cliOptions._[0]) || './fonts');
const outputPath = cliOptions.out;
fs.readdir(inputPath, (err, files) => {
if (err) console.log(err);
const fontList = files.map(file => `jsPDFAPI.addFileToVFS('${file}','${new Buffer(fs.readFileSync(path.join(inputPath, file))).toString('base64')}');`);
fs.writeFileSync(outputPath, `(function (jsPDFAPI) { \n"use strict";\n${fontList.join('\n')}\n})(jsPDF.API);`);
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhongchengyi/jsPDF.git
[email protected]:zhongchengyi/jsPDF.git
zhongchengyi
jsPDF
jsPDF
master

搜索帮助