Imagick::__construct()函數是Imagick類的構造函數,該構造函數將圖像路徑或圖像URL作為參數來為特定圖像或一組圖像實例化Imagick對象。
用法:
Imagick::__construct( $files )
參數:該函數接受單個參數$files,該文件保存要加載的圖像的路徑或路徑數組。它可以包含文件名的通配符,也可以是URL。
返回值:成功執行後,此函數將返回一個新的Imagick對象。
異常:該函數在錯誤時引發ImagickException異常。
程序:該程序使用圖像的URL加載圖像並顯示在屏幕上。
<?php
// Create a new Imagick object
$image = new Imagick(
"https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png");
// Browser should know that image is to be loaded on the page
header("Content-Type: image/png");
// Display the image object
echo $image;
?>
輸出:
參考: https://www.php.net/manual/en/imagick.construct.php
相關用法
- PHP Imagick montageImage()用法及代碼示例
- PHP Imagick getImageChannelDistortion()用法及代碼示例
- PHP Imagick getImageBackgroundColor()用法及代碼示例
- PHP Imagick blueShiftImage()用法及代碼示例
- PHP Imagick setImageBluePrimary()用法及代碼示例
- PHP Imagick sampleImage()用法及代碼示例
- PHP Imagick scaleImage()用法及代碼示例
- PHP Imagick segmentImage()用法及代碼示例
- PHP Imagick getImageCompose()用法及代碼示例
- PHP Imagick roundCorners()用法及代碼示例
- PHP Imagick getImageChannelStatistics()用法及代碼示例
- PHP Imagick getImageBorderColor()用法及代碼示例
- PHP Imagick setImageBackgroundColor()用法及代碼示例
- PHP Imagick setImageBorderColor()用法及代碼示例
注:本文由純淨天空篩選整理自piyush25pv大神的英文原創作品 PHP | Imagick __construct() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。