La función Gmagick::setImageDispose() es una función incorporada en PHP que se utiliza para establecer el método de eliminación de imágenes.
Sintaxis:
Gmagick Gmagick::setimagedispose( $disposeType )
Parámetros: esta función acepta un solo parámetro $disposeType que especifica el tipo de disposición de la imagen.
Valor de retorno: esta función devuelve el objeto Gmagick en caso de éxito.
Los siguientes programas ilustran la función Gmagick::setImageDispose() en PHP:
Programa 1:
Imagen original:
<?php // Create new Gmagick object $gmagick = new Gmagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-15.png'); // Using getImageDispose function $res = $gmagick->getImageDispose(); // Display result echo "dispose Before: " . $res . "</br>"; // Set Dispose of Gmagick Object $gmagick->setImageDispose(4); // using getImageDispose function $res = $gmagick->getImageDispose(); // Display result echo "dispose After: " . $res; ?>
Producción:
dispose Before: 0 dispose After: 4
Programa 2:
Imagen original:
<?php $string = "Computer Science portal for Geeks!"; // Creating new image of above String // and add color and background $im = new Gmagick(); $draw = new GmagickDraw(); // Fill the color in image $draw->setFillColor(new GmagickPixel('green')); // Set the text font size $draw->setFontSize(50); $metrix = $im->queryFontMetrics($draw, $string); $draw->annotation(0, 40, $string); $im->newImage($metrix['textWidth'], $metrix['textHeight'], new GmagickPixel('white')); // Draw the image $im->drawImage($draw); $im->setImageFormat('jpeg'); // Using getImageDispose function $res = $im->getImageDispose(); // Display result echo "dispose Before: " . $res . "</br>"; // Set Dispose of Gmagick Object $im->setImageDispose(10); // Using getImageDispose function $res = $im->getImageDispose(); // Display result echo "dispose After: " . $res; ?>
Producción:
dispose Before: 0 dispose After: 10
Referencia: http://php.net/manual/en/gmagick.setimagedispose.php