Friday, June 06, 2008

ImageMagickとPHPで画像を油絵調に処理する

Imagickで画像を油絵調に処理するには、以下のコードを実行します。

<!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>sample410</title>
</head>
<body>
<?php
/* oilPaintImageメソッドを使用して油絵調に画像処理する */
$im = new Imagick('sf.jpg');
$im->oilPaintImage(3);
$im->writeImage('sample410a.jpg');
/* $im->clear(); 2008/09/30追記:destroyと同様にClearMagicWandを呼ぶので必要なし */
$im->destroy();

?>

<img src="sample410a.jpg" />

</body>
</html>

元画像(sf.jpg)


出力画像(sample410a.jpg)


環境
Apache 2.2.8/PHP5.2.5/ImageMagick6.4.0

関連項目
WindowsでImageMagickをPHPから使用するための設定 (Imagickの設定)

No comments: