PHP |想象一下 identifyFormat()函数
Imagick::identifyFormat()函数是PHP中的一个内置函数,用于将嵌入的格式字符替换为其适当的图像属性并返回解释后的文本。
转义序列列表:请参考链接查看转义序列列表。参考:http://www.imagemagick.org/script/escape。 PHP
以下是一些重要的嵌入式格式化字符,例如适当图像属性的转义序列:
句法:
string Imagick::identifyFormat( $embedText )
参数:此函数接受单个参数$embedText ,其中包含包含格式化序列的字符串。
返回值:此函数返回图像格式或失败时返回 FALSE。
下面的程序说明了PHP中的 Imagick::identifyFormat()函数:
程序:该程序使用 Imagick::identifyFormat()函数来查找给定图像的格式。
";
// Use Imagick::identifyFormat() function to replace the embedded
// format characters with its appropriate image property
$embedText .= $imagick->identifyFormat("Trim box: %@ number of unique colors: %k");
// Display the output
echo $embedText;
?>
输出:
Output of 'Trim box: %@ number of unique colors: %k' is:
Trim box: 656x144+5+15 number of unique colors: 2955
参考: https://www. PHP.net/manual/en/imagick.identifyformat。 PHP