ImagickPixelIterator::getNextIteratorRow

(PECL imagick 2, PECL imagick 3)

ImagickPixelIterator::getNextIteratorRow返回像素迭代器的下一行

说明

public ImagickPixelIterator::getNextIteratorRow(): array
警告

此函数目前未记录;仅提供其参数列表。

返回像素迭代器的下一行,作为像素魔杖数组。

返回值

返回下一行,作为 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;
}

?>

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top