Pageres:画像の解像度を設定できるウェブスクリーンツール


これはオープンソースのウェブスクリーンツールで、スクリーンの解像度をそれぞれ設定できます.プロジェクトはGitHubに置いています.https://github.com/sindresorhus/pageres
分ぐらいで十の違うウェブサイトのスクリーンショットを100枚作ることができます.
コマンドラインの適用
インストール:
$ npm install --global pageres
スクリーンショットを作るためのPhotomJSは自動的にインストールされます.しかし、いくつかのまれなケースでは、インストールに失敗するかもしれないが、エラーが発生しました.このエラーがあったら、手動でPhotomJSをダウンロードして、再インストールします.
使い方:
$ pageres --help

Get screenshots of websites in different resolutions.

Specify urls and screen resolutions as arguments. Order doesn't matter.
Screenshots are saved in the current directory.

Usage
  pageres   [  ...]
  pageres [  ...] < 
  cat  | pageres [  ...]

Example
  pageres todomvc.com yeoman.io 1366x768 1600x900
  pageres 1366x768 < urls.txt
  cat screen-resolutions.txt | pageres todomvc.com yeoman.io

You can also pipe in a newline separated list of urls and screen resolutions which will get merged with the arguments.
If no screen resolutions are specified it will fall back to the ten most popular ones according to w3counter.
プログラミングに使用できるAPI
インストール:
$ npm install --save pageres
例:
var pageres = require('pageres');

pageres(['todomvc.com'], ['1366x768', '1600x900'], function () {
    console.log('done');
});
コンパイル:Segmentfault