📜  PHP | GmagickborderImage()函数

📅  最后修改于: 2022-05-13 01:56:18.841000             🧑  作者: Mango

PHP | GmagickborderImage()函数

Gmagick::borderImage()函数是PHP中的一个内置函数,用于在图像中绘制边框。此函数以给定颜色创建围绕图像的边框。

句法:

Gmagick Gmagick::borderImage( $bordercolor, $width, $height )

参数:此函数接受三个参数,如上所述,如下所述:

  • $bordercolor:此参数包含一个包含边框颜色的字符串。
  • $width:此参数用于设置边框宽度。
  • $height:此参数用于设置边框高度。

返回值:此函数在成功时返回 Gmagick 对象。

下面的程序说明了PHP中的Gmagick::borderImage()函数:

方案一:

borderImage('green', 100, 100);
  
header("Content-Type: image/jpg");
  
// Display image
echo $image;
?>

输出:
边框图片

方案二:

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;
?>

输出:
边框图片

参考: http: PHP。 PHP