當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。