La función Gmagick::setimagetype() es una función incorporada en PHP que se utiliza para establecer el tipo de imagen.
Sintaxis:
Gmagick Gmagick::setimagetype( int $imgType )
Parámetros: esta función acepta un solo parámetro $imgType que contiene un valor entero correspondiente a una de las constantes IMGTYPE .
Todas las constantes IMGTYPE se enumeran a continuación:
- Gmagick::IMGTYPE_UNDEFINED (0)
- Gmagick::IMGTYPE_BILEVEL (1)
- Gmagick::IMGTYPE_GRAYSCALE (2)
- Gmagick::IMGTYPE_GRAYSCALEMATTE (3)
- Gmagick::IMGTYPE_PALETTE (4)
- Gmagick::IMGTYPE_PALETTEMATTE (5)
- Gmagick::IMGTYPE_TRUECOLOR (6)
- Gmagick::IMGTYPE_TRUECOLORMATTE (7)
- Gmagick::IMGTYPE_COLORSEPARATION (8)
- Gmagick::IMGTYPE_COLORSEPARATIONMATTE (9)
- Gmagick::IMGTYPE_OPTIMIZE (10)
Valor de retorno: esta función devuelve el objeto Gmagick en caso de éxito.
Excepciones: esta función lanza GmagickException en caso de error.
Los siguientes programas ilustran la función Gmagick::setimagetype() en PHP:
Imagen usada:
Programa 1:
<?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Set the image type $gmagick->setimagetype(1); // Display the image header("Content-Type: image/png"); echo $gmagick; ?>
Producción:
Programa 2:
<?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Set the image type $gmagick->setimagetype(3); // Display the image header("Content-Type: image/png"); echo $gmagick; ?>
Producción:
Programa 3:
<?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Create a GmagickDraw object $draw = new GmagickDraw(); // Set the color $draw->setFillColor('white'); // Function to draw rectangle $draw->rectangle(0, 0, 800, 400); // Set the fill color $draw->setFillColor('red'); // Set the font size $draw->setfontsize(50); // Annotate a text $draw->annotate(30, 100, 'GeeksforGeeks'); // Use of drawimage function $gmagick->drawImage($draw); // Set the image type $gmagick->setimagetype(2); // Display the image header("Content-Type: image/png"); echo $gmagick; ?>
Producción:
Referencia: https://www.php.net/manual/en/gmagick.setimagetype.php