不应该从这个PhantomJS脚本的输出是240x320像素? 我越来越大,默认尺寸图像。 clipRect()似乎呈现正确尺寸的图像,但我需要的页面的响应内容,以反映实际的浏览器窗口大小。
var page = require('webpage').create();
page.viewportSize = { width: 240, height: 320 };
page.open('http://cnn.com', function (status) {
if (status !== 'success') {
console.log('Unable to load the address!');
} else {
window.setTimeout(function () {
page.render('default.png');
phantom.exit();
}, 200);
}
});
这个作品! 发现GitHub的网页上即可问题 。它迫使“身体”元素的网页viewportSize:
var width = 1024;
var height = 768;
var webpage = require('webpage');
page = webpage.create();
page.viewportSize = {width: width, height: height};
page.open('http://harness.io', function(status) {
console.log(status);
page.evaluate(function(w, h) {
document.body.style.width = w + "px";
document.body.style.height = h + "px";
}, width, height);
page.clipRect = {top: 0, left: 0, width: width, height: height};
page.render('/tmp/test.png');
phantom.exit();
});
这是一个已知的问题,但我发现了一个解决办法:
- 加载页面到你喜欢的任何大小的iframe。
- 渲染夹在iframe的矩形截图。
有代码来执行它在这个仓库: https://github.com/jbeuckm/Splasher
这似乎在Mac二进制工作为1.9.7:
page.set('viewportSize', {width: 320, height: 480});
在CasperJS,我处理这个问题,使用了上述方法(一个或多个),并最终发现它是不必要的(至少对我来说,在CasperJS)一旦我通过设置单视口选项casper.viewport()
方法。
我已为我的版本下方,所以你可以看到它如何能在一次与多个网址。
// Requires node.js and casperjs (npm install casperjs)
var casper = require('casper').create();
var root_dir = 'screenshots/';
var links = [];
var root = 'http://localhost:8001/';
var DEBUG = false;
var opts = {top: 0, left: 0, 'width': 1280, 'height': 1024};
function getHrefs() {
// Taken wholesale from casperjs
// http://docs.casperjs.org/en/latest/quickstart.html
var links = document.querySelectorAll('.days li > a');
return Array.prototype.map.call(links, function(e) {
return e.getAttribute('href');
});
}
function captureLinks(links) {
casper.echo('= SCREEN CAPTURING LINKS ====');
casper.each(links, function(self, link) {
var filename = root_dir + link.replace('/index.html', '') + '.png';
casper.echo('Capturing... ' + filename);
// Relevant code...
this.viewport(opts.width, opts.height);
self.thenOpen(root + link, function() {
// slight delay for external libraries and init loading
this.wait(500, function(){
this.capture(filename, opts);
});
});
});
}
casper.start(root, function() {
links = links.concat(this.evaluate(getHrefs));
this.echo('= GETTING LINKS ====');
if(DEBUG) this.echo(links.join('\n'));
captureLinks(links);
});
casper.run();