フォーマットシーケンスを含む文字列。例: "Trim box: %@ number of unique colors: %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");
?>