La función Gmagick::borderImage() es una función incorporada en PHP que se utiliza para dibujar el borde de una imagen. Esta función crea el borde que rodea la imagen en el color dado.
Sintaxis:
Gmagick Gmagick::borderImage( $bordercolor, $width, $height )
Parámetros: esta función acepta tres parámetros, como se mencionó anteriormente y se describe a continuación:
- $bordercolor: este parámetro contiene una string que contiene el color del borde.
- $width: este parámetro se usa para establecer el ancho del borde.
- $altura: este parámetro se utiliza para establecer la altura del borde.
Valor de retorno: esta función devuelve el objeto Gmagick en caso de éxito.
Los siguientes programas ilustran la función Gmagick::borderImage() en PHP:
Programa 1:
<?php // Create an image object $image = new Gmagick ( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png'); // Set the border in the given image $image->borderImage('green', 100, 100); header("Content-Type: image/jpg"); // Display image echo $image; ?>
Producción:
Programa 2:
<?php $string = "Computer Science portal for Geeks!"; // Creating new image of above String // and add color and background $im = new Gmagick(); $draw = new ImagickDraw(); // Fill the color in image $draw->setFillColor(new ImagickPixel('green')); // Set the text font size $draw->setFontSize(50); $matrix = $im->queryFontMetrics($draw, $string); $draw->annotation(0, 40, $string); $im->newImage($matrix['textWidth'], $matrix['textHeight'], new ImagickPixel('white')); // Draw the image $im->drawImage($draw); $im->setImageFormat('jpeg'); // Set the border in the given image $image->borderImage('green', 20, 20); header("Content-Type: image/jpg"); // Display image echo $image; ?>
Producción:
Referencia: http://php.net/manual/en/gmagick.borderimage.php