我正在使用phantomjs-2.0.0-windows将wepage文件转换为jpg文件。对于某些文件,它会生成带有黑色背景的图像。我正在使用以下cmd phantomjs.exe rasterize.js" index.html" output.jpg 1920px。
https://github.com/ariya/phantomjs/blob/master/examples/rasterize.js
输入文件的视图
cmd执行后输出文件
加入后
page.evaluate(function() {
document.body.bgColor = 'white';
});
我得到" TypeError:null不是一个对象(评估document.body.bgColor =" white"')"这个错误。