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>sample486(ImageMagick6.4.1)</title>
</head>
<body>
<?php
/* 画像にモーションブラーをかける */
$im = new Imagick("sf2.jpg");
$im->motionBlurImage(0,3,-10);
$im->writeImage('sample486a.png');
/* $im->clear(); 2008/09/30追記:destroyと同様にClearMagicWandを呼ぶので必要なし */
$im->destroy();
?>
<img src="sample486a.png" />
</body>
</html>
元画像(sf2.jpg)
出力画像(sample486a.png)
環境
Apache 2.2.8/PHP5.2.5/ImageMagick6.4.1
関連項目
ImageMagickとPHPで、画像をぼかす
No comments:
Post a Comment