(PECL imagick 2, PECL imagick 3)
Imagick::getPixelRegionIterator — 获取图像区域的 ImagickPixelIterator
$x
,$y
,$columns
,$rows
获取图像区域的 ImagickPixelIterator。
x
区域的 x 坐标。
y
区域的 y 坐标。
columns
区域的宽度。
rows
区域的高度。
返回图像区域的 ImagickPixelIterator。
在错误时抛出 ImagickException。
示例 #1 Imagick::getPixelRegionIterator() 示例
遍历图像左上角的像素,并将它们更改为黑色。
<?php
$im = new Imagick(realpath("./testImage.png"));
$areaIterator = $im->getPixelRegionIterator(0, 0, 10, 10);
foreach ($areaIterator as $rowIterator) {
foreach ($rowIterator as $pixel) {
// 将每个像素绘制为黑色
$pixel->setColor("rgba(0, 0, 0, 0)");
}
$areaIterator->syncIterator();
}
$im->writeImage("./output.png");
?>