La función Gmagick::spreadimage() es una función incorporada en PHP que se usa para desplazar aleatoriamente cada píxel en un bloque definido por la variable.
Sintaxis:
Gmagick Gmagick::spreadimage( $radius )
Parámetros: esta función acepta un solo parámetro $radio que elige un píxel aleatorio en una vecindad de esta extensión.
Valor de retorno: esta función devuelve el objeto Gmagick en caso de éxito.
Errores/Excepciones: Esta función lanza GmagickException en caso de error.
Los siguientes programas ilustran la función Gmagick::spreadimage() en PHP:
Programa 1:
Imagen de entrada:
<?php // Create a Gmagick object $gmagick = new Gmagick( 'https://media.geeksforgeeks.org/wp-content/uploads/tech.png'); // spread the image. $gmagick->spreadimage(10); header('Content-type: image/png'); // Output the image echo $gmagick; ?>
Producción:
Programa 2:
<?php // Create a GmagickDraw object $draw = new GmagickDraw(); // Create GmagickPixel object $strokeColor = new GmagickPixel('Red'); $fillColor = new GmagickPixel('Green'); // Set the color, opacity of image $draw->setStrokeOpacity(1); $draw->setStrokeColor('Red'); $draw->setFillColor('Green'); // Set the width and height of image $draw->setStrokeWidth(7); $draw->setFontSize(72); // Function to draw circle $draw->circle(250, 250, 100, 150); $gmagick = new Gmagick(); $gmagick->newImage(500, 500, 'White'); $gmagick->setImageFormat("png"); $gmagick->drawImage($draw); // Spread the image $gmagick->spreadimage(25); // Display the output image header("Content-Type: image/png"); echo $gmagick->getImageBlob(); ?>
Producción:
Referencia: http://php.net/manual/en/gmagick.spreadimage.php
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA