<?php
function getPixelIterator($imagePath) {
$imagick = new \Imagick(realpath($imagePath));
$imageIterator = $imagick->getPixelIterator();
foreach ($imageIterator as $row => $pixels) { /* On parcourt les lignes de piexel */
foreach ($pixels as $column => $pixel) { /* On parcourt les pixel dans la ligne (colonne) */
/** @var $pixel \ImagickPixel */
if ($column % 2) {
$pixel->setColor("rgba(0, 0, 0, 0)"); /* On peint tous les seconds pixels en noir */
}
}
$imageIterator->syncIterator(); /* On synchronise l'itérateur, c'est important de le faire à chaque itération */
}
header("Content-Type: image/jpg");
echo $imagick;
}
?>