Voll Upload SGD Fachinformatiker PHP

This commit is contained in:
2026-06-03 13:46:32 +00:00
parent 1256ec2190
commit 84a568d89c
265 changed files with 9961 additions and 2 deletions
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Bildinformationen auslesen</title>
</head>
<body>
<h1>Bildinformationen auslesen</h1>
<img src="img/b1.jpg" width="300" alt="Hund"/>
<hr/>
<?php
$image = "img/b1.jpg";
$exif = exif_read_data($image, 0, true);
foreach($exif as $key => $section){
foreach($section as $name => $val){
echo "$key.$name: $val <br/>";
}
echo "<hr/>";
}
?>
</body>
</html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB