La función Imagick::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 a la imagen en el color dado.
Sintaxis:
bool Imagick::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 es un objeto ImagickPixel o 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 True en caso de éxito.
Los siguientes programas ilustran la función Imagick::borderImage() en PHP:
Programa 1:
<?php // Create an image object $image = new Imagick( '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 // Create an image object $image = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/adaptiveThresholdImage.png'); // Set the border in the given image $image->borderImage('green', 20, 20); header("Content-Type: image/jpg"); // Display image echo $image; ?>
Producción:
Artículos relacionados:
- PHP | Función addImage() de Imagick
- PHP | Función Imagick addNoiseImage()
- PHP | Función Imagick adaptiveBlurImage()
Referencia: http://php.net/manual/en/imagick.borderimage.php