I can use exif tags for getting the metadata of a jpeg or a tiff format image.But what should I do to get png metadata?
Example: My code for getting exif tags:
<?php
$image = "NATU.png";
$exif = exif_read_data($image, 0, true);
foreach ($exif as $key => $section) {
foreach ($section as $name => $val) {
echo "$key.$name: $val <br>";
}
}
?>