iptcparse
(PHP 4, PHP 5, PHP 7, PHP 8)
iptcparse — 將二進制 IPTC 塊解析為單個標記
參數
-
iptcblock
-
二進制的 IPTC 塊。
返回值
返回一個陣列,用 tagmarker 作為索引,以其值為值。如果出錯或未發現 IPTC 數據則返回 false
。
範例
示例 #1 iptcparse() used together with getimagesize()
<?php
$size = getimagesize('./test.jpg', $info);
if(isset($info['APP13']))
{
$iptc = iptcparse($info['APP13']);
var_dump($iptc);
}
?>
註釋
注意:
此函式不需要 GD 圖像庫。