Saturday, July 25, 2009

ImageMagickとPHPで画像をタイル配置にして台形変形する

ImageMagickとPHPで画像をタイル配置にして台形変形するには、以下のコードを実行します。


<!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>sample1138(ImageMagick6.5.2)</title>
</head>
<body>
<?php
$im = new Imagick('sf.jpg');
$iw = $im->getImageWidth();
$ih = $im->getImageHeight();
$im->setImageVirtualPixelMethod(Imagick::VIRTUALPIXELMETHOD_TILE);

$points = array(
0,0, $iw/8,$ih/8,
$iw,0, $iw*3/4,$ih/4,
$iw,$ih, $iw*3/4, $ih*3/4,
0,$ih, $iw/8,$ih*7/8
);
// PerspectiveDistortion in distort.h
$im->distortImage(4, $points, false);
$im->writeImage('sample1138a.png');
$im->destroy();
?>
<img src="sample1138a.png" /><br />

</body>
</html>


元画像(sf.jpg)


出力画像(sample1138a.png)
Imagickでタイル配置して台形変形させた画像

No comments: