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


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


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



相關用法


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