Gmagick::read()函數是PHP中的內置函數,用於從本地文件夾中讀取圖像並將其添加到Gmagick對象。
用法:
Gmagick Gmagick::read( string $filename )
參數:該函數接受單個參數$filename,該參數保存文件名。
返回值:此函數返回包含圖像的Gmagick對象。
異常:此函數在錯誤時引發GmagickException。
下麵給出的程序說明了PHP中的Gmagick::read()函數:
使用的圖片:
程序1(從文件夾讀取圖像):
<?php
// Create a new Gmagick object
$gmagick = new Gmagick();
// Read an image
$gmagick->read('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->read('geeksforgeeks.png');
// Here you can further work with your loaded image
// Add frame to image
$gmagick->frameimage('green', 15, 15, 5, 5);
// Output the image
header('Content-type:image/png');
echo $gmagick;
?>
輸出:
參考: https://www.php.net/manual/en/gmagick.read.php
相關用法
- PHP Gmagick getimageextrema()用法及代碼示例
- PHP Gmagick getimagecolorspace()用法及代碼示例
- PHP Gmagick setimageprofile()用法及代碼示例
- PHP Gmagick setimageblueprimary()用法及代碼示例
- PHP Gmagick getimagewidth()用法及代碼示例
- PHP Gmagick getimagedelay()用法及代碼示例
- PHP Gmagick shearimage()用法及代碼示例
- PHP Gmagick getimagefilename()用法及代碼示例
- PHP Gmagick getImageDispose()用法及代碼示例
- PHP Gmagick commentImage()用法及代碼示例
- PHP Gmagick setsize()用法及代碼示例
- PHP Gmagick edgeimage()用法及代碼示例
- PHP Gmagick chopimage()用法及代碼示例
- PHP Gmagick setimagetype()用法及代碼示例
- PHP Gmagick getImageRenderingIntent()用法及代碼示例
注:本文由純淨天空篩選整理自gurrrung大神的英文原創作品 PHP | Gmagick read() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。