ファントムjsを使用してページのスクリーンショットを撮っています
http://code.google.com/p/phantomjs/wiki/QuickStart#Rendering
それはclipRectと呼ばれる機能を持っています
http://code.google.com/p/phantomjs/wiki/Interface#clipRect_(オブジェクト)
次のコードをclipRectに変更して、全体ではなく部分的なスクリーンショットのみを取得する方法を誰かに教えてもらえますか?
if (phantom.state.length === 0) {
if (phantom.args.length !== 2) {
console.log('Usage: rasterize.js URL filename');
phantom.exit();
} else {
var address = phantom.args[0];
phantom.state = 'rasterize';
phantom.viewportSize = { width: 600, height: 600 };
phantom.open(address);
}
} else {
var output = phantom.args[1];
phantom.sleep(200);
phantom.render(output);
phantom.exit();
}