Imagick::getImageProperty()函数是PHP中的一个内置函数,用于获取image属性。图像属性和图像伪像之间的主要区别在于,属性是公共的,而伪像是私有的。
用法:
string Imagick::getImageProperty( string $name )
参数:此函数接受包含属性名称的单个参数$name。
返回值:成功时,此函数返回属性值。
以下示例程序旨在说明PHP中的Imagick::getImageProperty()函数:
程序:
<?php
// Create a new Imagick object
$imagick = new Imagick(
'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-9.png');
// Apply the setImageProperty() function
$imagick->setImageProperty("property_name", "property_value");
// Apply the getImageProperty() function
$property_name = $imagick->getImageProperty("property_name");
echo $property_name;
?>
输出:
property_value
参考: https://www.php.net/manual/en/imagick.getimageproperty.php
相关用法
- PHP Imagick getCopyright()用法及代码示例
- PHP Imagick distortImage()用法及代码示例
- PHP Imagick readImage()用法及代码示例
- PHP Imagick readImageFile()用法及代码示例
- PHP Imagick remapImage()用法及代码示例
- PHP Imagick extentImage()用法及代码示例
- PHP Imagick readImages()用法及代码示例
- PHP Imagick separateImageChannel()用法及代码示例
- PHP Imagick sepiaToneImage()用法及代码示例
- PHP Imagick setColorspace()用法及代码示例
- PHP Imagick despeckleImage()用法及代码示例
- PHP Imagick convolveImage()用法及代码示例
- PHP Imagick gaussianBlurImage()用法及代码示例
- PHP Imagick enhanceImage()用法及代码示例
- PHP Imagick encipherImage()用法及代码示例
注:本文由纯净天空筛选整理自gurrrung大神的英文原创作品 PHP | Imagick getImageProperty() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。