PHP | Función ImagickPixelIterator getPreviousIteratorRow()

La función ImagickPixelIterator::getPreviousIteratorRow() es una función incorporada en PHP que se usa para obtener la fila anterior como una array de varitas de píxeles del iterador de píxeles.

Sintaxis:

array ImagickPixelIterator::getPreviousIteratorRow( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor de retorno: esta función devuelve un valor de array que contiene objetos ImagickPixel.

Los siguientes programas ilustran la función ImagickPixelIterator::getPreviousIteratorRow() en PHP:

Programa 1:

<?php
  
// Create a new imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png');
   
// Get the pixel iterator
$pixelIterator = $imagick->getPixelIterator();
   
// Set the pixel iterator to 50
$pixelIterator->setIteratorRow(50);
  
// Move one step to previous row
$pixelIterator->getPreviousIteratorRow();
   
// Get the current iterator row
echo "Current row is " . $pixelIterator->getIteratorRow();
?>

Producción:

Current row is 49

Programa 2:

<?php
  
// Create a new imagick object
$imagick = new Imagick();
  
// Create a image on imagick object
$imagick->newImage(800, 250, 'black');
  
$imageIterator = $imagick->getPixelIterator();
  
$x = 0;
  
// Set the iterator row to last row
$imageIterator->setIteratorRow(249);
  
while ($x < 250) {
  
    // Get the previous row
    $pixels = $imageIterator->getPreviousIteratorRow();
  
    foreach ($pixels as $pixel) {
        if ($x % 4) {
  
            // Set the color of pixel
            $pixel->setColor('green');
  
        } else {
  
            // Set the color of pixel
            $pixel->setColor('red');
        }
    }
  
    // Sync the iterator
    $imageIterator->syncIterator();
      
    $x++;
}
  
// Show the output
$imagick->setImageFormat('png');
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

Producción:

Referencia: https://www.php.net/manual/en/imagickpixeliterator.getpreviousiteratorrow.php

Publicación traducida automáticamente

Artículo escrito por gurrrung y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *