(PHP 4, PHP 5, PHP 7, PHP 8)
iptcparse — Parse a binary IPTC block into single tags
$iptc_block
) : array|falseParses an » IPTC block into its single tags.
iptc_blockA binary IPTC block.
Returns an array using the tagmarker as an index and the value as the
value. It returns false on error or if no IPTC data was found.
Example #1 iptcparse() used together with getimagesize()
<?php
$size = getimagesize('./test.jpg', $info);
if(isset($info['APP13']))
{
$iptc = iptcparse($info['APP13']);
var_dump($iptc);
}
?>
Note:
This function does not require the GD image library.