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


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


Gmagick::__construct()函数是PHP中的一个内置函数,用于创建Gmagick对象。可以使用此新创建的Gmagick对象进行进一步的Gmagick操作。

用法:

public Gmagick::__construct( string $filename )

参数:该函数接受单个参数$filename,该参数保存文件名。


返回值:成功时,此函数返回一个新的Gmagick对象。

异常:此函数在错误时引发GmagickException。

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

程序1:该程序在浏览器中显示图像。

<?php 
  
// Create a new Gmagick object 
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Output the image to browser 
header('Content-type:image/png');   
echo $gmagick;   
?>

输出:

程序2:该程序显示带边框的图像。

<?php 
  
// Create a new Gmagick object 
// https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png 
$gmagick = new Gmagick('geeksforgeeks.png'); 
  
// Border the image 
$gmagick->borderimage('red', 20, 20); 
  
// Output the image to browser 
header('Content-type:image/png');   
echo $gmagick;   
?>  

输出:

参考: https://www.php.net/manual/en/gmagick.construct.php



相关用法


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