Friday, October 17, 2025
HomeLanguagesPHP | Gmagick frameimage() Function

PHP | Gmagick frameimage() Function

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('neveropen.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('neveropen.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, 'neveropen');
   
// 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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS