Imagickで画像の2値化を行うには、以下のコードを実行します。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja" dir="ltr">
<head>
<title>sample381</title>
</head>
<body>
<?php
/* 2値化 */
$im = new Imagick('sf.jpg');
$im->blackThresholdImage('#808080');
$im->whiteThresholdImage('#808080');
$im->writeImage('sample382a.png');
/* $im->clear(); 2008/09/30追記:destroyと同様にClearMagicWandを呼ぶので必要なし */
$im->destroy();
?>
<img src="sample382a.png" />
</body>
</html>
上記の例ではblackThresholdImageメソッドとwhiteThresholdImageメソッドを使用して画像を2値化しています。
元画像(sf.jpg)
出力画像(sample382a.png)
環境
Apache 2.2.8/PHP5.2.5/ImageMagick6.4.0
関連項目
WindowsでImageMagickをPHPから使用するための設定 (Imagickの設定)
No comments:
Post a Comment