La función Gmagick::rotateimage() es una función incorporada en PHP que se utiliza para rotar una imagen en el número de grados especificado. Los triángulos vacíos de fondo se llenaron con el color de fondo.
Sintaxis:
Gmagick Gmagick::rotateimage ( $color, $degrees )
Parámetros: esta función acepta dos parámetros, como se mencionó anteriormente y se describe a continuación:
- $color: este parámetro se utiliza para establecer el píxel de color de fondo.
- $grados: este parámetro se utiliza para establecer el grado de rotació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::rotateimage() en PHP:
Programa 1:
Imagen de entrada:
php
<?php // Create a Gmagick object $gmagick = new Gmagick( 'https://media.geeksforgeeks.org/wp-content/uploads/tech.png'); // Rotate the image. $gmagick->rotateimage('red', 35); header('Content-type: image/png'); // Output the image echo $gmagick; ?>
Producción:
Programa 2:
php
<?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); // Create a GmagickDraw object $gmagick = new Gmagick(); // Function to create new image of given size $gmagick->newImage(500, 500, 'White'); // Function to set image format $gmagick->setImageFormat("png"); // Function to draw image $gmagick->drawImage($draw); // Rotate the image $gmagick->rotateimage('yellow', 35); // Display the output image header("Content-Type: image/png"); echo $gmagick->getImageBlob(); ?>
Producción:
Referencia: http://php.net/manual/en/gmagick.rotateimage.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