Query: iptcparse
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
IPTCPARSE(3) 1 IPTCPARSE(3) iptcparse - Parse a binary IPTC block into single tags.SYNOPSISarray iptcparse (string $iptcblock)DESCRIPTIONParses an IPTC block into its single tags.PARAMETERSo $iptcblock - A binary IPTC block.RETURN VALUESReturns 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.EXAMPLESExample #1 iptcparse() used together with getimagesize(3) <?php $size = getimagesize('./test.jpg', $info); if(isset($info['APP13'])) { $iptc = iptcparse($info['APP13']); var_dump($iptc); } ?>NOTESNote This function does not require the GD image library. PHP Documentation Group IPTCPARSE(3)