PHP |想象一下 setOption()函数
Imagick::setOption()函数是PHP中的一个内置函数,用于设置选项。
句法:
bool Imagick::setOption( string $key, string $value )
参数:该函数接受上面提到的两个参数,如下所述:
- $key:它指定选项的键。
- $value:它指定与键关联的值。
返回值:此函数在成功时返回 TRUE。
异常:此函数在出错时抛出 ImagickException。
下面给出的程序说明了PHP中的Imagick::setOption()函数:
方案一:
setImageFormat('jpg');
// Set the option
$imagick->setOption('jpeg:extent', 90);
// Display the image
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>
输出:
方案二:
setOption('key1', 'option1');
// Get the option with key 'key1'
$option = $imagick->getOption('key1');
echo $option;
?>
输出:
option1
参考: https://www. PHP.net/manual/en/imagick.setoption。 PHP