PHP | imagick deleteImageArtifact()函数
Imagick::deleteImageArtifact()函数是PHP中的一个内置函数,用于删除图像工件。图像属性和图像工件之间的主要区别在于属性是公共的,而工件是私有的。
句法:
bool Imagick::deleteImageArtifact( string $artifact )
参数:此函数接受单个参数$artifact ,其中包含工件的名称。
返回值:此函数在成功时返回 TRUE。
错误/异常:此函数在错误时抛出 ImagickException。
下面的程序说明了PHP中的Imagick::deleteImageArtifact()函数:
程序:
setImageArtifact("artifact_name", "artifact_value");
// Apply the deleteImageArtifact() function to delete a artifact
$imagick->deleteImageArtifact("artifact_name");
?>
输出:
A Database Error Occurred
参考: https://www. PHP.net/manual/en/imagick.getimageartifact。 PHP