Tuesday, October 7, 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
32340 POSTS0 COMMENTS
Milvus
86 POSTS0 COMMENTS
Nango Kala
6708 POSTS0 COMMENTS
Nicole Veronica
11872 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11936 POSTS0 COMMENTS
Shaida Kate Naidoo
6829 POSTS0 COMMENTS
Ted Musemwa
7090 POSTS0 COMMENTS
Thapelo Manthata
6780 POSTS0 COMMENTS
Umr Jansen
6784 POSTS0 COMMENTS