Open In App

PHP | Gmagick frameimage() Function

Last Updated : 17 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The Gmagick::frameimage() function is an inbuilt function in PHP which is used to add a simulated three-dimensional border around the image. The width and height specify the border width of the vertical and horizontal sides of the frame. The inner and outer bevels indicate the width of the inner and outer shadows of the frame.

Syntax:

Gmagick Gmagick::frameimage( Gmagick $color, int $width, int $height, int $inner_bevel, int $outer_bevel )

Parameters:This function accepts five parameters as mentioned above and described below:

  • $color: It specifies the color of the frame.
  • $width: It specifies the width of the frame.
  • $height: It specifies the height of the frame.
  • $inner_bevel: It specifies the width of inner bevel.
  • $outer_bevel: It specifies the width of outer bevel.

Return Value: This function returns a Gmagick object containing the framed image.

Exceptions: This function throws GmagickException on error.
Used Image: To capture the canvas area.

Below given programs illustrate the Gmagick::frameimage() function in PHP:

Program 1:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
  
// Add the frame
$gmagick->frameimage('green', 50, 50, 15, 15);
  
// Output the image  
header('Content-type: image/png');  
echo $gmagick;  
?>  


Output:

Program 2:




<?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);
   
// Add the frame
$gmagick->frameimage('red', 30, 30, 5, 5); 
   
// Display the output image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>


Output:

Reference: https://www.php.net/manual/en/gmagick.frameimage.php



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads