Thursday, June 11, 2026
HomeLanguagesPHP | ImagickPixelIterator getPreviousIteratorRow() Function

PHP | ImagickPixelIterator getPreviousIteratorRow() Function

The ImagickPixelIterator::getPreviousIteratorRow() function is an inbuilt function in PHP which is used to get the previous row as an array of pixel wands from the pixel iterator.

Syntax:

array ImagickPixelIterator::getPreviousIteratorRow( void )

Parameters: This function doesn’t accepts any parameters.

Return Value: This function returns an array value containing ImagickPixel objects.

Below programs illustrate the ImagickPixelIterator::getPreviousIteratorRow() function in PHP:

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
   
// Get the pixel iterator
$pixelIterator = $imagick->getPixelIterator();
   
// Set the pixel iterator to 50
$pixelIterator->setIteratorRow(50);
  
// Move one step to previous row
$pixelIterator->getPreviousIteratorRow();
   
// Get the current iterator row
echo "Current row is " . $pixelIterator->getIteratorRow();
?>


Output:

Current row is 49

Program 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;
  
// Set the iterator row to last row
$imageIterator->setIteratorRow(249);
  
while ($x < 250) {
  
    // Get the previous row
    $pixels = $imageIterator->getPreviousIteratorRow();
  
    foreach ($pixels as $pixel) {
        if ($x % 4) {
  
            // Set the color of pixel
            $pixel->setColor('green');
  
        } else {
  
            // Set the color of pixel
            $pixel->setColor('red');
        }
    }
  
    // Sync the iterator
    $imageIterator->syncIterator();
      
    $x++;
}
  
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>


Output:

Reference: https://www.php.net/manual/en/imagickpixeliterator.getpreviousiteratorrow.php

RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS