2012-04-21から1日間の記事一覧

colorcount.php

某ブログを書いてて、イメージ画像中の色数を数えたかったので作りました。 実行イメージ % php colorcount.php tmp.png 255 プログラム colorcount.php \n"; exit(1); } $im = imagecreatefromstring(file_get_contents($argv[1])); $width = imagesx($im);…