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