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>sample397</title>
</head>
<body>
<?php
$im = new Imagick('sample6.jpg');
$im->setImageMatte(true);
/* 半透明グラデーション */
$im2=$im->fxImage('j/h', Imagick::CHANNEL_ALPHA);
$im3 = new Imagick('sf.jpg');
$im3->compositeImage($im2, Imagick::COMPOSITE_DEFAULT, 30, 30);
$im3->writeImage('sample397a.jpg');
$im3->clear();
$im3->destroy();
$im2->clear();
$im2->destroy();
$im->clear();
$im->destroy();
?>
<img src="sample397a.jpg" />
</body>
</html>
元画像(sample6.jpg)
元画像(sf.jpg)
出力画像(sample397a.jpg)
環境
Apache 2.2.8/PHP5.2.5/ImageMagick6.4.0
関連項目
WindowsでImageMagickをPHPから使用するための設定 (Imagickの設定)
No comments:
Post a Comment