当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP ImagickPixelIterator getCurrentIteratorRow()用法及代码示例


ImagickPixelIterator::getCurrentIteratorRow()函数是PHP中的内置函数,用于从像素迭代器获取作为ImagickPixel对象数组的当前行。

用法:

array ImagickPixelIterator::getCurrentIteratorRow( void )

参数:此函数不接受任何参数。


返回值:此函数返回包含ImagickPixel对象的数组值,这些对象本身可以进行迭代。

异常:该函数在错误时引发ImagickException。

下面给出的程序说明了PHP中的ImagickPixelIterator::getCurrentIteratorRow()函数:

程序1(获取第一行的前五个像素):

<?php 
// Create a new imagick object 
$imagick = new Imagick(); 
   
// Create a image on imagick object with  
// 5 pixels on row and 10 pixels on columns 
$imagick->newImage(5, 10, 'black'); 
  
// Get the pixel iterator 
$pixelIterator = $imagick->getPixelIterator(); 
  
// Get the current iterator row 
$row = $pixelIterator->getCurrentIteratorRow(); 
print("<pre>".print_r($row, true)."</pre>"); 
?>

输出:

Array
(
    [0] => ImagickPixel Object
        (
        )

    [1] => ImagickPixel Object
        (
        )

    [2] => ImagickPixel Object
        (
        )

    [3] => ImagickPixel Object
        (
        )

    [4] => ImagickPixel Object
        (
        )

)

程序2(获取第一行的前五个像素的颜色):

<?php 
// Create a new imagick object 
$imagick = new Imagick( 
    'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); 
  
// Get the pixel iterator 
$pixelIterator = $imagick->getPixelIterator(); 
  
// Get the current iterator row 
$row = $pixelIterator->getCurrentIteratorRow(); 
echo "First five colors of pixels are:<br>"; 
print("Pixel 1:" . "<pre>".print_r($row[0]->getColor(), true)."</pre>"); 
print("Pixel 2:" . "<pre>".print_r($row[1]->getColor(), true)."</pre>"); 
print("Pixel 3:" . "<pre>".print_r($row[2]->getColor(), true)."</pre>"); 
print("Pixel 4:" . "<pre>".print_r($row[3]->getColor(), true)."</pre>"); 
print("Pixel 5:" . "<pre>".print_r($row[4]->getColor(), true)."</pre>"); 
?>

输出:

First five colors of pixels are:
Pixel 1:
Array
(
    [r] => 255
    [g] => 255
    [b] => 255
    [a] => 1
)
Pixel 2:
Array
(
    [r] => 255
    [g] => 255
    [b] => 255
    [a] => 1
)
Pixel 3:
Array
(
    [r] => 255
    [g] => 255
    [b] => 255
    [a] => 1
)
Pixel 4:
Array
(
    [r] => 255
    [g] => 255
    [b] => 255
    [a] => 1
)
Pixel 5:
Array
(
    [r] => 255
    [g] => 255
    [b] => 255
    [a] => 1
)

参考: https://www.php.net/manual/en/imagickpixeliterator.getcurrentiteratorrow.php



相关用法


注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | ImagickPixelIterator getCurrentIteratorRow() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。