Tuesday, August 12, 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>sample530(ImageMagick6.4.2)</title>
</head>
<body>
<?php
/* 画像の周りを暗くする */
$im = new Imagick("sf.jpg");
$im2 = new Imagick();
$im2->newImage($im->getImageWidth(), $im->getImageHeight(), 'none');
$im2->setImageBackgroundColor('#000000a0');
$im2->spliceImage(10, 10, $im->getImageWidth(), $im->getImageHeight());
$im2->spliceImage(10, 10, 0, 0);
$im2->blurImage(0, 10, Imagick::CHANNEL_ALL);
$im2->cropImage($im->getImageWidth(), $im->getImageHeight(), 10, 10);
$im->compositeImage($im2, Imagick::COMPOSITE_DEFAULT, 0, 0);
$im->writeImage('sample530a.jpg');
/* $im2->clear(); 2008/09/30追記:destroyと同様にClearMagicWandを呼ぶので必要なし */
$im2->destroy();
/* $im->clear(); 2008/09/30追記:destroyと同様にClearMagicWandを呼ぶので必要なし */
$im->destroy();
?>

<img src="sample530a.jpg" />

</body>
</html>

元画像(sf.jpg)


出力画像(sample530a.jpg)


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

No comments: