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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。