UNPKG

fill-pdf-utf8

Version:

use nodejs to fill pdf form,it supports utf8 character

11 lines (10 loc) 286 B
/** * Created by jay on 2017-01-12. */ const index = require('../index'); index.generatePdf({fields:{name:'张三',age:24}},'./test/test.pdf',{fontSize: 8.0},'./test/result.pdf',function (error, stdout, stderr) { if(error){ throw error; } console.log(stdout); });