La función Gmagick::flipimage() es una función incorporada en PHP que se usa para voltear la imagen. Esta función crea una imagen especular al reflejar los píxeles a lo largo del eje x.
Sintaxis:
Gmagick Gmagick::flipimage( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve el objeto Gmagick invertido.
Errores/Excepciones: Esta función lanza GmagickException en caso de error.
Los siguientes programas ilustran la función Gmagick::flipimage() en PHP:
Programa 1:
Imagen original:
<?php // Create a Gmagick object $gmagick = new Gmagick( 'https://media.geeksforgeeks.org/wp-content/uploads/tech.png'); // Use flipimage() function $gmagick->flipimage(); 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->annotateimage ( $draw, 50, 60, 54, 'GeeksForGeeks'); $gmagick->drawImage($draw); // Use flipimage() function $gmagick->flipimage(); // Display the output image header("Content-Type: image/png"); echo $gmagick->getImageBlob(); ?>
Producción:
Referencia: http://php.net/manual/en/gmagick.flipimage.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