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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
<?php
/**
* This file is licensed under the GPL as stated in Jake Olefsky's original
* code. Jake has given Horde permission to incorporate Exifer into our
* codebase.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details. http://www.horde.org/licenses/gpl
*
* The original Exifer library has been heavily modified and refactored. All
* modifications are
*
* Copyright 2003 Jake Olefsky
* Copyright 2009-2017 Horde LLC (http://www.horde.org/)
*
* @author Jake Olefsky <jake@olefsky.com>
* @author Michael J. Rubinsky <mrubinsk@horde.org>
* @author Jan Schneider <jan@horde.org>
* @category Horde
* @package Image
*/
/**
* Class for dealing with Exif data using a bundled PHP library based on the
* Exifer code written by and Copyright 2003 Jake Olefsky
*
* @see http://www.offsky.com/software/exif/index.php
* @author Jake Olefsky <jake@olefsky.com>
* @author Michael J. Rubinsky <mrubinsk@horde.org>
* @author Jan Schneider <jan@horde.org>
* @category Horde
* @copyright 2009-2017 Horde LLC
* @package Image
*/
class Horde_Image_Exif_Parser_Gps extends Horde_Image_Exif_Parser_Base
{
/**
* Looks up the name of the tag
*
* @param unknown_type $tag
* @return string
*/
protected function _lookupTag($tag)
{
switch($tag) {
case '0000': return 'Version';
//north or south
case '0001': return 'LatitudeRef';
//dd mm.mm or dd mm ss
case '0002': return 'Latitude';
//east or west
case '0003': return 'LongitudeRef';
//dd mm.mm or dd mm ss
case '0004': return 'Longitude';
//sea level or below sea level
case '0005': return 'AltitudeRef';
//positive rational number
case '0006': return 'Altitude';
//three positive rational numbers
case '0007': return 'Time';
//text string up to 999 bytes long
case '0008': return 'Satellite';
//in progress or interop
case '0009': return 'ReceiveStatus';
//2D or 3D
case '000a': return 'MeasurementMode';
//positive rational number
case '000b': return 'MeasurementPrecision';
//KPH, MPH, knots
case '000c': return 'SpeedUnit';
//positive rational number
case '000d': return 'ReceiverSpeed';
//true or magnetic north
case '000e': return 'MovementDirectionRef';
//positive rational number
case '000f': return 'MovementDirection';
//true or magnetic north
case '0010': return 'ImageDirectionRef';
//positive rational number
case '0011': return 'ImageDirection';
//text string up to 999 bytes long
case '0012': return 'GeodeticSurveyData';
//north or south
case '0013': return 'DestLatitudeRef';
//three positive rational numbers
case '0014': return 'DestinationLatitude';
//east or west
case '0015': return 'DestLongitudeRef';
//three positive rational numbers
case '0016': return 'DestinationLongitude';
//true or magnetic north
case '0017': return 'DestBearingRef';
//positive rational number
case '0018': return 'DestinationBearing';
//km, miles, knots
case '0019': return 'DestDistanceRef';
//positive rational number
case '001a': return 'DestinationDistance';
case '001b': return 'ProcessingMethod';
case '001c': return 'AreaInformation';
//text string 10 bytes long
case '001d': return 'Datestamp';
//integer in range 0-65535
case '001e': return 'DifferentialCorrection';
default: return 'unknown: ' . $tag;
}
}
/**
* Formats a rational number
*/
protected function _rational($data, $intel)
{
if ($intel == 1) {
//intel stores them bottom-top
$top = hexdec(substr($data, 8, 8));
} else {
//motorola stores them top-bottom
$top = hexdec(substr($data, 0, 8));
}
if ($intel == 1) {
$bottom = hexdec(substr($data, 0, 8));
} else {
$bottom = hexdec(substr($data, 8, 8));
}
if ($bottom != 0) {
$data = $top / $bottom;
} elseif ($top == 0) {
$data = 0;
} else {
$data = $top . '/' . $bottom;
}
return $data;
}
/**
* Formats Data for the data type
*/
protected function _formatData($type, $tag, $intel, $data)
{
switch ($type) {
case 'ASCII':
// Latitude Reference, Longitude Reference
if ($tag == '0001' || $tag == '0003') {
$data = ($data[1] == $data[2] && $data[1] == $data[3]) ? $data[0] : $data;
}
break;
case 'URATIONAL':
case 'SRATIONAL':
$data = bin2hex($data);
if ($intel == 1) {
$data = Horde_Image_Exif::intel2Moto($data);
}
if ($intel == 1) {
//intel stores them bottom-top
$top = hexdec(substr($data, 8, 8));
} else {
//motorola stores them top-bottom
$top = hexdec(substr($data, 0, 8));
}
if ($intel == 1) {
$bottom = hexdec(substr($data, 0, 8));
} else {
$bottom = hexdec(substr($data, 8, 8));
}
if ($type == 'SRATIONAL' && $top > 2147483647) {
// make the number signed instead of unsigned
$top = $top - 4294967296;
}
switch ($tag) {
case '0002':
case '0004':
//Latitude, Longitude
if ($intel == 1) {
$seconds = $this->_rational(substr($data, 0, 16), $intel);
$hour = $this->_rational(substr($data, 32, 16), $intel);
} else {
$hour = $this->_rational(substr($data, 0, 16), $intel);
$seconds = $this->_rational(substr($data, 32, 16), $intel);
}
$minutes = $this->_rational(substr($data, 16, 16), $intel);
$data = array($hour, $minutes, $seconds);
break;
case '0007':
//Time
$seconds = $this->_rational(substr($data, 0, 16), $intel);
$minutes = $this->_rational(substr($data, 16, 16), $intel);
$hour = $this->_rational(substr($data, 32, 16), $intel);
$data = $hour . ':' . $minutes . ':' . $seconds;
break;
default:
if ($bottom != 0) {
$data = $top / $bottom;
} elseif ($top == 0) {
$data = 0;
} else {
$data = $top . '/' . $bottom;
}
if ($tag == '0006') {
$data .= 'm';
}
break;
}
break;
case 'USHORT':
case 'SSHORT':
case 'ULONG':
case 'SLONG':
case 'FLOAT':
case 'DOUBLE':
$data = bin2hex($data);
if ($intel == 1) {
$data = Horde_Image_Exif::intel2Moto($data);
}
$data = hexdec($data);
break;
case 'UNDEFINED':
break;
case 'UBYTE':
$data = bin2hex($data);
if ($intel == 1) {
$num = Horde_Image_Exif::intel2Moto($data);
}
switch ($tag) {
case '0000':
// VersionID
$data = hexdec(substr($data, 0, 2))
. '.' . hexdec(substr($data, 2, 2))
. '.' . hexdec(substr($data, 4, 2))
. '.'. hexdec(substr($data, 6, 2));
break;
case '0005':
// Altitude Reference
if ($data == '00000000') {
$data = 'Above Sea Level';
} elseif ($data == '01000000') {
$data = 'Below Sea Level';
}
break;
}
break;
default:
$data = bin2hex($data);
if ($intel == 1) {
$data = Horde_Image_Exif::intel2Moto($data);
}
break;
}
return $data;
}
/**
* GPS Special data section
*
* @see http://drewnoakes.com/code/exif/sampleOutput.html
* @see http://www.geosnapper.com
*/
public function parse($block, &$result, $offset, $seek, $globalOffset)
{
if ($result['Endien'] == 'Intel') {
$intel = 1;
} else {
$intel = 0;
}
//offsets are from TIFF header which is 12 bytes from the start of the
//file
if (!$seek->seek($globalOffset + $offset, false)) {
$result['Errors'] = $result['Errors']++;
return $result;
}
$num = bin2hex($seek->substring(0, 2));
if ($intel == 1) {
$num = Horde_Image_Exif::intel2Moto($num);
}
$num = hexdec($num);
$result['GPS']['NumTags'] = $num;
$block = $seek->substring(0, $num * 12);
$place = 0;
//loop thru all tags Each field is 12 bytes
for ($i = 0; $i < $num; $i++) {
//2 byte tag
$tag = bin2hex(substr($block, $place, 2));
$place += 2;
if ($intel == 1) {
$tag = Horde_Image_Exif::intel2Moto($tag);
}
$tag_name = $this->_lookupTag($tag);
//2 byte datatype
$type = bin2hex(substr($block, $place, 2));
$place += 2;
if ($intel == 1) {
$type = Horde_Image_Exif::intel2Moto($type);
}
list($type, $size) = $this->_lookupType($type);
//4 byte number of elements
$count = bin2hex(substr($block, $place, 4));
$place += 4;
if ($intel==1) {
$count = Horde_Image_Exif::intel2Moto($count);
}
$bytesofdata = $size * hexdec($count);
//4 byte value or pointer to value if larger than 4 bytes
$value = substr($block, $place, 4);
$place += 4;
if ($bytesofdata <= 4) {
$data = $value;
} else {
$value = bin2hex($value);
if ($intel == 1) {
$value = Horde_Image_Exif::intel2Moto($value);
}
//offsets are from TIFF header which is 12 bytes from the start
//of the file
if ($seek->seek($globalOffset + hexdec($value), false)) {
$data = $seek->substring(0, $bytesofdata);
} elseif ($v == -1) {
$result['Errors'] = $result['Errors']++;
}
}
$result['GPS' . $tag_name] = $this->_formatData($type, $tag, $intel, $data);
}
}
}
|