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


PHP ImagickPixelIterator setIteratorRow()用法及代碼示例


ImagickPixelIterator::setIteratorRow()函數是PHP中的內置函數,用於設置像素迭代器行。此函數用於移動到當前圖像像素的任何行。

用法:

bool ImagickPixelIterator::setIteratorRow( int $row )

參數:該函數接受單個參數$row,該參數保存行號。


返回值:成功時此函數返回TRUE。

異常:該函數在錯誤時引發ImagickException。

下麵給出的程序說明了PHP中的ImagickPixelIterator::setIteratorRow()函數:

程序1:

<?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(); 
  
// Set the pixel iterator to 50 
$pixelIterator->setIteratorRow(50); 
  
// Get the current iterator row 
echo "Current row is " . $pixelIterator->getIteratorRow(); 
?>

輸出:

Current row is 50

程序2:

<?php 
// Create a new imagick object 
$imagick = new Imagick(); 
  
// Create a image on imagick object 
$imagick->newImage(800, 250, 'black'); 
  
$imageIterator = $imagick->getPixelIterator(); 
  
$x = 0; 
  
while ($x < 250) { 
    // Set the iterator row 
    $imageIterator->setIteratorRow($x); 
  
    // Get the current row 
    $pixels = $imageIterator->getCurrentIteratorRow(); 
      
    foreach ($pixels as $pixel) { 
        if ($x % 2) { 
            // Set the color of pixel 
            $pixel->setColor('white'); 
  
        } else { 
            // Set the color of pixel 
            $pixel->setColor('red'); 
  
        } 
    } 
    // Sync the iterator 
    $imageIterator->syncIterator(); 
  
    // Give a gap of 4 pixels between lines 
    $x = $x + 5; 
} 
  
// Show the output 
$imagick->setImageFormat('png'); 
header("Content-Type:image/png"); 
echo $imagick->getImageBlob(); 
?>

輸出:

參考: https://www.php.net/manual/en/imagickpixeliterator.setiteratorrow.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | ImagickPixelIterator setIteratorRow() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。