是的,我在Nodejs中做到了,但是在PhantomJS中却做不到。
imgContent = '...base64...string';
imgContent = imgContent.replace(/^data:image\/png;base64,/, "");
chart_path = "/charts.png";
fs.write(chart_path, new Buffer(imgContent, 'base64'), 'w');
错误信息:
ReferenceError:找不到变量:缓冲区
最佳答案
我不确定这是否是最佳解决方案,但对我来说效果很好。
// ...
fs.write(chart_path, atob(imgContent), 'b');
Phantomjs版本2.1.1。