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


PHP Gmagick readimage()用法及代碼示例


Gmagick::readimage()函數是PHP中的內置函數,用於從本地文件夾中讀取圖像並將其添加到Gmagick對象。這是read()函數的替代方法。

用法:

Gmagick Gmagick::readimage( string $filename )

參數:該函數接受單個參數$filename,該參數保存文件名。


返回值:此函數返回包含圖像的Gmagick對象。

異常:此函數在錯誤時引發GmagickException。

下麵給出的程序說明了PHP中的Gmagick::readimage()函數:

使用的圖片:

程序1(從文件夾讀取圖像):

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick(); 
  
// Read an image 
$gmagick->readimage('geeksforgeeks.png'); 
  
// Output the image   
header('Content-type:image/png');   
echo $gmagick;   
?>

輸出:

程序2(閱讀後編輯圖像):

<?php 
  
// Create a new Gmagick object 
$gmagick = new Gmagick(); 
  
// Read an image 
$gmagick->readimage('geeksforgeeks.png'); 
  
// Here you can further work with your loaded image 
  
// Simulate a charcoal drawing 
$gmagick->charcoalimage(0.1, 10); 
  
// Output the image 
header('Content-type:image/png'); 
echo $gmagick; 
?>

輸出:

參考: https://www.php.net/manual/en/gmagick.readimage.php



相關用法


注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Gmagick readimage() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。