La función ImagickPixelIterator::syncIterator() es una función incorporada en PHP que se utiliza para sincronizar el iterador de píxeles.
Sintaxis:
bool ImagickPixelIterator::syncIterator( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función ImagickPixelIterator::syncIterator() en PHP:
Programa 1:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'black'); $imageIterator = $imagick->getPixelIterator(); // Loop through rows pixel value foreach ($imageIterator as $pixels) { // Loop through the pixels in the row value foreach ($pixels as $column => $pixel) { if ($column % 11) { $pixel->setColor('yellow'); } } // Sync the iterator after each iteration $imageIterator->syncIterator(); } // Loop through pixel rows again for new color foreach ($imageIterator as $pixels) { // Loop through the pixels in the row foreach ($pixels as $column => $pixel) { if ($column % 20) { $pixel->setColor('blue'); } } // Sync the iterator after each iteration $imageIterator->syncIterator(); } // Show the output $imagick->setImageFormat('png'); header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); $imageIterator = $imagick->getPixelIterator(); // Loop through pixel rows foreach ($imageIterator as $pixels) { // Loop through the pixels in the row foreach ($pixels as $column => $pixel) { // Get the current HSL $HSL = $pixel->getHSL(); // Set the HSL and change only saturation $pixel->setHSL($HSL['hue'], 2, $HSL['luminosity']); } // Sync the iterator after each iteration $imageIterator->syncIterator(); } // Show the output $imagick->setImageFormat('png'); header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/imagickpixeliterator.synciterator.php