blob: 55612a433da18aecca1dcdfdc369f0906cb45173 (
plain)
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
|
<?php
/**
* Exif Processing Library
*
* @package TidypicsExif
*/
/**
* Pull EXIF data from image file
*
* @param TidypicsImage $file
*/
function td_get_exif($file) {
// catch for those who don't have exif module loaded
if (!is_callable('exif_read_data')) {
return;
}
$mime = $file->mimetype;
if ($mime != 'image/jpeg' && $mime != 'image/pjpeg') {
return;
}
$filename = $file->getFilenameOnFilestore();
$exif = exif_read_data($filename);
create_metadata($file->getGUID(), "tp_exif", serialize($exif), "text", $file->getObjectOwnerGUID(), ACCESS_PUBLIC);
}
/**
* Grab array of EXIF data for display
*
* @param int $file_guid GUID of TidypicsImage
* @return array|false
*/
function tp_exif_formatted($file_guid) {
$metadata_exif = get_metadata_byname($file_guid, "tp_exif");
if (!$metadata_exif) {
// //try to load it from the file if its not in the database
$file = new ElggFile($file_guid);
td_get_exif($file);
unset($file);
$metadata_exif = get_metadata_byname($file_guid, "tp_exif");
}
if (!$metadata_exif) {
return false;
}
$exif = unserialize($metadata_exif["value"]);
$model = $exif['Model'];
if (!$model) {
$model = "N/A";
}
$exif_data['Model'] = $model;
$exposure = $exif['ExposureTime'];
if (!$exposure) {
$exposure = "N/A";
}
$exif_data['Shutter'] = $exposure;
//got the code snippet below from http://www.zenphoto.org/support/topic.php?id=17
//convert the raw values to understandible values
$Fnumber = explode("/", $exif['FNumber']);
if ($Fnumber[1] != 0) {
$Fnumber = $Fnumber[0] / $Fnumber[1];
} else {
$Fnumber = 0;
}
if (!$Fnumber) {
$Fnumber = "N/A";
} else {
$Fnumber = "f/$Fnumber";
}
$exif_data['Aperture'] = $Fnumber;
$iso = $exif['ISOSpeedRatings'];
if (!$iso) {
$iso = "N/A";
}
$exif_data['ISO Speed'] = $iso;
$Focal = explode("/", $exif['FocalLength']);
if ($Focal[1] != 0) {
$Focal = $Focal[0] / $Focal[1];
} else {
$Focal = 0;
}
if (!$Focal || round($Focal) == "0") {
$Focal = 0;
}
if (round($Focal) == 0) {
$Focal = "N/A";
} else {
$Focal = round($Focal) . "mm";
}
$exif_data['Focal Length'] = $Focal;
$captured = $exif['DateTime'];
if (!$captured) {
$captured = "N/A";
}
$exif_data['Captured'] = $captured;
return $exif_data;
}
|