ImagickPixelIterator::newPixelRegionIterator()函数是PHP中的内置函数,用于从imagick魔杖的特定区域获取新的像素迭代器。
用法:
bool ImagickPixelIterator::newPixelRegionIterator( Imagick $wand, int $x, int $y, int $columns, int $rows )
参数:该函数接受上述和以下所述的五个参数:
- $wand:它指定了imagick魔杖。
- $x:它指定x坐标。
- $y:它指定y坐标。
- $columns:它指定列数。
- $rows:它指定行数。
返回值:成功时此函数返回TRUE。
异常:该函数在错误时引发ImagickException。
以下示例程序旨在说明PHP中的ImagickPixelIterator::newPixelRegionIterator()函数:
程序1:该程序在空白图像上绘制正方形。
<?php
// Create a new imagick object
$imagick = new Imagick();
// Create a image on imagick object
$imagick->newImage(800, 250, 'black');
// Create a new ImagickPixelIterator instance
$imageIterator = new ImagickPixelIterator();
// Get the pixels from a image region
$imageIterator->newPixelRegionIterator($imagick, 40, 30, 200, 200);
// Loop through pixel rows
foreach ($imageIterator as $row => $pixels) {
foreach ($pixels as $column => $pixel) {
// Set the color of each pixel
$pixel->setColor('red');
}
// Sync the iterator after each iteration
$imageIterator->syncIterator();
}
// Show the output
$imagick->setImageFormat('png');
header("Content-Type:image/png");
echo $imagick->getImageBlob();
?>
输出:
程序2:该程序在png图像上绘制一个矩形。
<?php
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
// Create a new ImagickPixelIterator instance
$imageIterator = new ImagickPixelIterator();
// Get the pixels from a image region
$imageIterator->newPixelRegionIterator($imagick, 40, 100, 1200, 20);
// Loop through pixel rows
foreach ($imageIterator as $row => $pixels) {
foreach ($pixels as $column => $pixel) {
// Set the color of each pixel
$pixel->setColor('#62AC45');
}
// Sync the iterator after each iteration
$imageIterator->syncIterator();
}
// Show the output
$imagick->setImageFormat('png');
header("Content-Type:image/png");
echo $imagick->getImageBlob();
?>
输出:
参考: https://www.php.net/manual/en/imagickpixeliterator.newpixelregioniterator.php
相关用法
- PHP ImagickPixelIterator getIteratorRow()用法及代码示例
- PHP ImagickPixelIterator syncIterator()用法及代码示例
- PHP ImagickPixelIterator newPixelIterator()用法及代码示例
- PHP ImagickPixelIterator setIteratorFirstRow()用法及代码示例
- PHP ImagickPixelIterator resetIterator()用法及代码示例
- PHP ImagickPixelIterator resetIterator()用法及代码示例
- PHP ImagickPixelIterator setIteratorLastRow()用法及代码示例
- PHP ImagickPixelIterator getPreviousIteratorRow()用法及代码示例
- PHP ImagickPixelIterator __construct()用法及代码示例
- PHP ImagickPixelIterator setIteratorRow()用法及代码示例
- PHP ImagickPixelIterator getCurrentIteratorRow()用法及代码示例
- PHP ImagickPixelIterator getNextIteratorRow()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickPixelIterator newPixelRegionIterator() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。