memo.xight.org

日々のメモ

指定したURLのスクリーンショットを挿入する chalowプラグイン

Summary

wordpress.com の非公式APIを利用してスクリーンショットを表示するための chalowプラグイン

この非公開APIの使用に関しては「使用もリンクも自由」との回答を得たものの、
オフィシャルではない為、いつまでも使える保証はない

######################
# Webページのスクリーンショットを挿入する
# usage: {{screenshot('URL')}}
sub screenshot{
	my ($url) = @_;
	my $width = 400;
	my $enc = URI::Escape::uri_escape($url);
	return qq(<a href="$url"><img src="http://s.wordpress.com/mshots/v1/$enc?w=$width"></a>);
}


Reference

Binary Moon - 2010-02-06 - An Automated Way to Take Screenshots of any Website - Free
http://www.binarymoon.co.uk/2010/02/automated-take-screenshots-website-free/

via

memobits - 2012-07-11 - URLだけでサイトのスクリーンショットを取得して簡単にサムネイル画像がつくれるサービスやAPIを調べてみた
http://m.designbits.jp/12071114/

かちびと.net - 2011-04-18 - お手軽WordPress Tips:wordpress.comのAPIを使ってスクリーンショットを取得する
http://kachibito.net/wordpress/screenshot-api.html