PHP | Gmagick setimageprofile()函数
Gmagick::setimageprofile()函数是PHP中的一个内置函数,用于将命名配置文件添加到 Gmagick 对象。
句法:
Gmagick Gmagick::setimageprofile( string $name, string $profile )
参数:该函数接受上面提到的两个参数,如下所述:
- $name:它指定配置文件的名称。
- $profile:它指定配置文件的值。
返回值:此函数在成功时返回 Gmagick 对象。
异常:此函数在错误时抛出 GmagickException。
下面给出的程序说明了PHP中的Gmagick::setimageprofile()函数:
使用图像:
方案一:
setimageprofile('profile_name', 'profile_value');
// Get the image profile
$profile = $gmagick->getimageprofile("profile_name");
echo $profile;
?>
输出:
profile_value
方案二:
setImageProfile('color', 'blue');
// Use the image profile
$gmagick->borderimage($gmagick->getimageprofile('color'), 5, 5);
// Display the image
header("Content-Type: image/png");
echo $gmagick->getImageBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/gmagick.setimageprofile。 PHP