Imagick::identifyFormat

(PECL imagick 3 >= 3.3.0)

Imagick::identifyFormat使用图像详细信息格式化字符串

描述

public Imagick::identifyFormat(string $embedText): string|false

用相应的图像属性替换任何嵌入的格式化字符,并返回解释后的文本。有关转义序列,请参见 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");

?>

添加说明

用户贡献的说明

此页面没有用户贡献的说明。
To Top