Vanilla 1.1.5a is a product of Lussumo. More Information: Documentation, Community Support.
<div id="exif-toggle-container"><?php echo generate_exif_table(plogger_get_picture_id()); ?></div>and try this:<div id="exif-toggle-container">
<?php
$exif_table = generate_exif_table(plogger_get_picture_id());
require_once(PLOGGER_DIR . "/lib/exifer1_5/exif.php");
$original = plogger_get_source_picture_url();
$exif_raw = read_exif_data_raw($original,false);
$exif_add = "";
print_r($exif_raw);
$exif_add.= "<tr><td><strong>Copyright</strong></td><td>".$exif_raw['IFD0']['Copyright']."</td></tr>\n";
$exif_add.= "</table></div>";
$exif = str_replace("</table></div>", $exif_add, $exif_table);
echo $exif;
?>
</div>print_r($exif_raw);to the end to output everything in the $exif_raw array. Then view the Plogger gallery on the picture level to find where in the array comment, artist, etc. are located. For example:$exif_raw['IFD0']['Copyright']means the same as the print_r output below:Array(
[IFD0] => Array(
[Copyright] => xxx
)
)Then add your others like so:$exif_add.= "<tr><td><strong>Comment</strong></td><td>".$exif_raw['sub_array']['Comment']."</td></tr>\n";where "sub_array" is something like ['IFD0'] depending on your print_r output.Posted By: chewbearsincoming e-mail and picture.php : PHave you sent yet? I have not received an email. Just checking.
1 to 11 of 11