-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser_exif.php
139 lines (125 loc) · 2.82 KB
/
parser_exif.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
if(in_array(strtolower(substr(strrchr($path_image, '.'),1)),array('jpg', 'jpeg', 'tif', 'tiff'))) // Si fichier Jpeg ou Tiff
{
if($exif = exif_read_data($path_image, 'EXIF', true)) // Si le fichier $img contient des infos Exif
{
foreach ($exif as $key => $section) // On parcourt la première partie du tableau mtrtidimensionnel
{
foreach ($section as $name => $value) // On parcourt la seconde partie
{
$exif_tab[$name] = $value; // Récupération des valeurs dans le tableau $exif_tab
}
}
}
}
/*
if(!empty($exif_tab))
{
echo '<pre>';
print_r($exif_tab);
echo '</pre>';
}*/
echo('<div class="table_exif" id="exif'.$photos_reponse['ID'].'">');
echo('<table>');
if(!empty($exif_tab['FileName']))
{
echo('<tr>');
echo('<td>');
echo('Nom du Fichier:');
echo('</td>');
echo('<td>');
echo($exif_tab['FileName']);
echo('</td>');
echo('</tr>');
}
if(!empty($exif_tab['DateTime']))
{
echo('<tr>');
echo('<td>');
echo('Date/heure de prise:');
echo('</td>');
echo('<td>');
echo($exif_tab['DateTime']);
echo('</td>');
echo('</tr>');
}
if(!empty($exif_tab['Height']))
{
echo('<tr>');
echo('<td>');
echo('Hauteur de la photo (pixels):');
echo('</td>');
echo('<td>');
echo($exif_tab['Height']);
echo('</td>');
echo('</tr>');
}
if(!empty($exif_tab['Width']))
{
echo('<tr>');
echo('<td>');
echo('Largeur de la photo (pixels)');
echo('</td>');
echo('<td>');
echo($exif_tab['Width']);
echo('</td>');
echo('</tr>');
}
if(!empty($exif_tab['Make']))
{
echo('<tr>');
echo('<td>');
echo('Marque de l\'appareil photo:');
echo('</td>');
echo('<td>');
echo($exif_tab['Make']);
echo('</td>');
echo('</tr>');
}
if(!empty($exif_tab['Model']))
{
echo('<tr>');
echo('<td>');
echo('Model de l\'appareil photo:');
echo('</td>');
echo('<td>');
echo($exif_tab['Model']);
echo('</td>');
echo('</tr>');
}
if(!empty($exif_tab['FocalLength']))
{
echo('<tr>');
echo('<td>');
echo('Distance focale:');
echo('</td>');
echo('<td>');
echo($exif_tab['FocalLength']);
echo('</td>');
echo('</tr>');
}
if(!empty($exif_tab['Saturation']))
{
echo('<tr>');
echo('<td>');
echo('Saturation:');
echo('</td>');
echo('<td>');
echo($exif_tab['Saturation']);
echo('</td>');
echo('</tr>');
}
if(!empty($exif_tab['Flash']))
{
echo('<tr>');
echo('<td>');
echo('Flash:');
echo('</td>');
echo('<td>');
echo($exif_tab['Flash']);
echo('</td>');
echo('</tr>');
}
echo('</table>');
echo('</div>');
?>