Monday, December 22, 2025
HomeLanguagesPHP | Imagick getPixelIterator() Function

PHP | Imagick getPixelIterator() Function

The Imagick::getPixelIterator() function is an inbuilt function in PHP which is used to return the image MagickPixelIterator.

Syntax:

ImagickPixelIterator Imagick::getPixelIterator( void )

Parameters:This function does not accept any parameter.

Return Value: This function returns an ImagickPixelIterator value.

Errors/Exceptions: This function throws ImagickException on error.

Below programs illustrate the Imagick::getPixelIterator() function in PHP:

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
$imageIterator = $imagick->getPixelIterator();
  
// Change the color of every second pixel to green
foreach ($imageIterator as $row => $pixels) {
    foreach ($pixels as $column => $pixel) {
        if ($column % 2) {
            $pixel->setColor("green");
        }
    }
    $imageIterator->syncIterator();
}
  
// Display the output
header("Content-Type:image/png");
echo $imagick;
?>


Output:

Program 2:




<?php
   
// Create a new imagick object
$imagick = new Imagick(
   
$imageIterator = $imagick->getPixelIterator();
   
// Change the color of every second pixel to green
foreach ($imageIterator as $row => $pixels) {
    foreach ($pixels as $column => $pixel) {
        if ($row % 2) {
            $pixel->setColor("blue");
        }
    }
    $imageIterator->syncIterator();
}
   
// Display the output
header("Content-Type:image/png");
echo $imagick;
?>


Output:

Reference: https://www.php.net/manual/en/imagick.getpixeliterator.php

RELATED ARTICLES

Most Popular

Dominic
32456 POSTS0 COMMENTS
Milvus
111 POSTS0 COMMENTS
Nango Kala
6823 POSTS0 COMMENTS
Nicole Veronica
11958 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12038 POSTS0 COMMENTS
Shaida Kate Naidoo
6958 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6911 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS