當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。