(PECL imagick 2, PECL imagick 3)
ImagickPixelIterator::getNextIteratorRow — 返回像素迭代器的下一行
此函数目前未记录;仅提供其参数列表。
返回像素迭代器的下一行,作为像素魔杖数组。
返回下一行,作为 ImagickPixel 对象数组,在出错时抛出 ImagickPixelIteratorException。
示例 #1 ImagickPixelIterator::getNextIteratorRow()
<?php
function getNextIteratorRow($imagePath) {
$imagick = new \Imagick(realpath($imagePath));
$imageIterator = $imagick->getPixelIterator();
$count = 0;
while ($pixels = $imageIterator->getNextIteratorRow()) {
if (($count % 3) == 0) {
/* 循环遍历行中的像素(列) */
foreach ($pixels as $column => $pixel) {
/** @var $pixel \ImagickPixel */
if ($column % 2) {
/* 将每个第二个像素涂成黑色*/
$pixel->setColor("rgba(0, 0, 0, 0)");
}
}
/* 同步迭代器,这在每次迭代中都很重要 */
$imageIterator->syncIterator();
}
$count += 1;
}
header("Content-Type: image/jpg");
echo $imagick;
}
?>