(PHP 4, PHP 5, PHP 7, PHP 8)
iptcparse — 將二進(jìn)制 IPTC 塊解析為單個(gè)標(biāo)記
iptcblock
二進(jìn)制的 IPTC 塊。
返回一個(gè)數(shù)組,用 tagmarker 作為索引,以其值為值。如果出錯(cuò)或未發(fā)現(xiàn) IPTC 數(shù)據(jù)則返回 false
。
示例 #1 iptcparse() used together with getimagesize()
<?php
$size = getimagesize('./test.jpg', $info);
if(isset($info['APP13']))
{
$iptc = iptcparse($info['APP13']);
var_dump($iptc);
}
?>
注意:
此函數(shù)不需要 GD 圖象庫(kù)。