ConFoo Montreal 2026: Call for Papers

Voting

: two plus five?
(Example: nine)

The Note You're Voting On

Anonymous
21 years ago
View all availiable IPCT Data

function output_iptc_data( $image_path ) {
$size = getimagesize ( $image_path, $info);
if(is_array($info)) {
$iptc = iptcparse($info["APP13"]);
foreach (array_keys($iptc) as $s) {
$c = count ($iptc[$s]);
for ($i=0; $i <$c; $i++)
{
echo $s.' = '.$iptc[$s][$i].'<br>';
}
}
}
}

<< Back to user notes page

To Top