当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Gmagick borderImage()用法及代码示例


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

用法:

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

参数:此函数接受上述和以下所述的三个参数:


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

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

以下示例程序旨在说明PHP中的Gmagick::borderImage()函数:

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

输出:
border image

示例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);  
    
$metrix = $im->queryFontMetrics($draw, $string);  
$draw->annotation(0, 40, $string);  
$im->newImage($metrix['textWidth'], $metrix['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; 
?>

输出:
border image

参考: http://php.net/manual/en/gmagick.borderimage.php



相关用法


注:本文由纯净天空筛选整理自R_Raj大神的英文原创作品 PHP | Gmagick borderImage() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。