📜  PHP |想象一下 setImageProfile()函数

📅  最后修改于: 2022-05-13 01:56:34.361000             🧑  作者: Mango

PHP |想象一下 setImageProfile()函数

Imagick::setImageProfile()函数是PHP中的一个内置函数,用于将命名配置文件设置为 Imagick 对象。

句法:

bool Imagick::setImageProfile( string $name, string $profile )

参数:该函数接受上面提到的两个参数,如下所述:

  • $name:它指定配置文件的名称。
  • $profile:它指定配置文件的值。

返回值:此函数在成功时返回 TRUE。

错误/异常:此函数在错误时抛出 ImagickException。

下面的程序说明了PHP中的Imagick::setImageProfile()函数

方案一:

setImageProfile('color', 'cyan');
  
// Use the Image Profile
$imagick->setImageBackgroundColor($imagick->getImageProfile('color'));
$imagick->setImageAlphaChannel(Imagick::ALPHACHANNEL_SHAPE);
  
// Display the image
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

方案二:

setImageProfile('borderColor', 'green');
  
// Use the Image Profile
$imagick->borderImage($imagick->getImageProfile('borderColor'), 1, 1);
  
// Display the image
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>

输出:

参考: https://www. PHP.net/manual/en/imagick.setimageprofile。 PHP