Hy,我需要帮助。我是Node.js的新手。我在服务器端(Node.js)上做pdf。我从https://github.com/calvinfroedge/node-jspdf下载了文件并安装了它。当我尝试这段代码时:
require('node-jspdf');
var name="file";
var doc = new jsPDF();
doc.setFontSize(40);
doc.text(35, 25, "Octonyan loves jsPDF");
doc.save(name+'.pdf');
它完美无缺。然后我添加此代码以将图像添加到pdf:http://mrrio.github.io/jsPDF/#。我收到错误的' atob'。我安装:npm install atob。然后我收到了这个错误:
node_modules/node-jspdf/vendor/jsPDF/plugins/png_support.js:362
throw new Error("PNG support requires png.js and zlib.js");
PNG支持需要png.js和zlib.js
知道怎么解决这个问题吗? 谢谢你的帮助。