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

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

PHP |想象一下 getImageProfile()函数

Imagick::getImageProfile()函数是PHP中的一个内置函数,用于返回命名的图像配置文件。

句法:

string Imagick::getImageProfile( string $name )

参数:此函数接受单个参数$name ,其中包含配置文件的名称。

返回值:此函数返回一个包含图像配置文件的字符串。

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

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

方案一:

setImageProfile('profile_name', 'profile_data');
  
// Get the Image Profile
$profile = $imagick->getImageProfile('profile_name');
  
echo $profile;
?>

输出:

profile_data

方案二:

setImageProfile('color', 'red');
  
// 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();
?>

输出:

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