(PECL imagick 3 >= 3.3.0)
Imagick::identifyFormat — 使用图像详细信息格式化字符串
用相应的图像属性替换任何嵌入的格式化字符,并返回解释后的文本。有关转义序列,请参见 https://imagemagick.org.cn/script/escape.php。
embedText
包含格式化序列的字符串,例如“修剪框:%@ 唯一颜色数:%k”。
返回格式或失败时返回 false
。
示例 #1 Imagick::identifyFormat()
<?php
$output = "Output of 'Trim box: %@ number of unique colors: %k' is: <br/>";
$imagick = new \Imagick(realpath("./images/artifact/mask.png"));
$output .= $imagick->identifyFormat("Trim box: %@ number of unique colors: %k");
?>