La función Gmagick::trimimage() es una función incorporada en PHP que se usa para eliminar los bordes que son el color de fondo de la imagen.
Sintaxis:
Gmagick Gmagick::trimimage( float $fuzz )
Parámetros: Esta función acepta un único parámetro $fuzz que contiene el fuzz.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza GmagickException en caso de error.
Los siguientes programas ilustran la función Gmagick::trimimage() en PHP:
Programa-1 (Recortar una imagen):
<?php // Create a new Gmagick object // https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png $gmagick = new Gmagick('geeksforgeeks.png'); // Trim the image $gmagick->trimimage(10); // Output the image header('Content-type: image/png'); echo $gmagick; ?>
Producción:
Programa-2 (Recortar un dibujo):
<?php // Create a new Gmagick object // https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png $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); // Trim the image $gmagick->trimimage(10); // Display the output image header("Content-Type: image/png"); echo $gmagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/gmagick.trimimage.php