php8.5
Home/ Manual/ imagick / imagickpixeliterator/ ImagickPixelIterator::__construct

ImagickPixelIterator::__construct

PHP function Edit on GitHub ✎

(PECL imagick 2, PECL imagick 3)

The ImagickPixelIterator constructor

Description

ImagickPixelIterator::__construct(Imagick $wand)

Func

The ImagickPixelIterator constructor

Return Values

Success

Examples

ImagickPixelIterator::construct()

php
<?php
function construct($imagePath) {
    $imagick = new \Imagick(realpath($imagePath));
    $imageIterator = new \ImagickPixelIterator($imagick);

    /* Loop through pixel rows */
    foreach ($imageIterator as $pixels) { 
        /* Loop through the pixels in the row (columns) */
        foreach ($pixels as $column => $pixel) { 
            /** @var $pixel \ImagickPixel */
            if ($column % 2) {
                /* Paint every second pixel black*/
                $pixel->setColor("rgba(0, 0, 0, 0)");
            }
        }
        /* Sync the iterator, this is important to do on each iteration */
        $imageIterator->syncIterator();
    }

    header("Content-Type: image/jpg");
    echo $imagick;
}

?>

Source: reference/imagick/imagickpixeliterator/construct.xml · from the official PHP manual (php/doc-en)