wiki.techinc.nl/includes/Exif.php

707 lines
22 KiB
PHP
Raw Normal View History

2005-05-07 12:52:54 +00:00
<?php
if (defined('MEDIAWIKI')) {
/**
* @package MediaWiki
* @subpackage Metadata
*
* @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
* @copyright Copyright © 2005, Ævar Arnfjörð Bjarmason
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License
*
* 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.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* http://www.gnu.org/copyleft/gpl.html
*
2005-05-07 12:52:54 +00:00
* @link http://exif.org/Exif2-2.PDF The Exif 2.2 specification
* @bug 1555, 1947
*/
/**#@+
* Exif tag type definition
*/
define('MW_EXIF_BYTE', 1); # An 8-bit unsigned integer.
define('MW_EXIF_ASCII', 2); # An 8-bit byte containing one 7-bit ASCII code. The final byte is terminated with NULL.
define('MW_EXIF_SHORT', 3); # A 16-bit (2-byte) unsigned integer.
define('MW_EXIF_LONG', 4); # A 32-bit (4-byte) unsigned integer.
define('MW_EXIF_RATIONAL', 5); # Two LONGs. The first LONG is the numerator and the second LONG expresses the denominator
define('MW_EXIF_UNDEFINED', 7); # An 8-bit byte that can take any value depending on the field definition
define('MW_EXIF_SLONG', 9); # A 32-bit (4-byte) signed integer (2's complement notation),
define('MW_EXIF_SRATIONAL', 10); # Two SLONGs. The first SLONG is the numerator and the second SLONG is the denominator.
/**#@-*/
2005-05-07 12:52:54 +00:00
/**
* @package MediaWiki
* @subpackage Metadata
*/
class Exif {
/**#@+
* @var array
*/
/**
* Exif tags grouped by category, the tagname itself is the key and the type
* is the value, in the case of more than one possible value type they are
* seperated by commas.
*
* @access private
*/
var $mExif;
/**
* A one dimentional array of all Exif tags
*/
var $mFlatExif;
/**#@-*/
/**
* Constructor
*/
function Exif() {
/**
* Page numbers here refer to pages in the EXIF 2.2 standard
*
* @link http://exif.org/Exif2-2.PDF The Exif 2.2 specification
*/
$this->mExif = array(
# TIFF Rev. 6.0 Attribute Information (p22)
'tiff' => array(
# Tags relating to image structure
'structure' => array(
'ImageWidth' => MW_EXIF_SHORT.','.MW_EXIF_LONG, # Image width
'ImageLength' => MW_EXIF_SHORT.','.MW_EXIF_LONG, # Image height
'BitsPerSample' => MW_EXIF_SHORT, # Number of bits per component
2005-05-07 12:52:54 +00:00
# "When a primary image is JPEG compressed, this designation is not"
# "necessary and is omitted." (p23)
'Compression' => MW_EXIF_SHORT, # Compression scheme #p23
'PhotometricInterpretation' => MW_EXIF_SHORT, # Pixel composition #p23
'Orientation' => MW_EXIF_SHORT, # Orientation of image #p24
'SamplesPerPixel' => MW_EXIF_SHORT, # Number of components
'PlanarConfiguration' => MW_EXIF_SHORT, # Image data arrangement #p24
'YCbCrSubSampling' => MW_EXIF_SHORT, # Subsampling ratio of Y to C #p24
'YCbCrPositioning' => MW_EXIF_SHORT, # Y and C positioning #p24-25
'XResolution' => MW_EXIF_RATIONAL, # Image resolution in width direction
'YResolution' => MW_EXIF_RATIONAL, # Image resolution in height direction
'ResolutionUnit' => MW_EXIF_SHORT, # Unit of X and Y resolution #(p26)
2005-05-07 12:52:54 +00:00
),
# Tags relating to recording offset
'offset' => array(
'StripOffsets' => MW_EXIF_SHORT.','.MW_EXIF_LONG, # Image data location
'RowsPerStrip' => MW_EXIF_SHORT.','.MW_EXIF_LONG, # Number of rows per strip
'StripByteCounts' => MW_EXIF_SHORT.','.MW_EXIF_LONG, # Bytes per compressed strip
'JPEGInterchangeFormat' => MW_EXIF_SHORT.','.MW_EXIF_LONG, # Offset to JPEG SOI
'JPEGInterchangeFormatLength' => MW_EXIF_SHORT.','.MW_EXIF_LONG, # Bytes of JPEG data
2005-05-07 12:52:54 +00:00
),
# Tags relating to image data characteristics
'characteristics' => array(
'TransferFunction' => MW_EXIF_SHORT, # Transfer function
'WhitePoint' => MW_EXIF_RATIONAL, # White point chromaticity
'PrimaryChromaticities' => MW_EXIF_RATIONAL, # Chromaticities of primarities
'YCbCrCoefficients' => MW_EXIF_RATIONAL, # Color space transformation matrix coefficients #p27
'ReferenceBlackWhite' => MW_EXIF_RATIONAL # Pair of black and white reference values
2005-05-07 12:52:54 +00:00
),
# Other tags
'other' => array(
'DateTime' => MW_EXIF_ASCII, # File change date and time
'ImageDescription' => MW_EXIF_ASCII, # Image title
'Make' => MW_EXIF_ASCII, # Image input equipment manufacturer
'Model' => MW_EXIF_ASCII, # Image input equipment model
'Software' => MW_EXIF_ASCII, # Software used
'Artist' => MW_EXIF_ASCII, # Person who created the image
'Copyright' => MW_EXIF_ASCII, # Copyright holder
2005-05-07 12:52:54 +00:00
),
),
# Exif IFD Attribute Information (p30-31)
'exif' => array(
# Tags relating to version
'version' => array(
# TODO: NOTE: Nonexistence of this field is taken to mean nonconformance
# to the EXIF 2.1 AND 2.2 standards
'ExifVersion' => MW_EXIF_UNDEFINED, # Exif version
'FlashpixVersion' => MW_EXIF_UNDEFINED, # Supported Flashpix version #p32
2005-05-07 12:52:54 +00:00
),
# Tags relating to Image Data Characteristics
'characteristics' => array(
'ColorSpace' => MW_EXIF_SHORT, # Color space information #p32
2005-05-07 12:52:54 +00:00
),
# Tags relating to image configuration
'configuration' => array(
'ComponentsConfiguration' => MW_EXIF_UNDEFINED, # Meaning of each component #p33
'CompressedBitsPerPixel' => MW_EXIF_RATIONAL, # Image compression mode
'PixelYDimension' => MW_EXIF_SHORT.','.MW_EXIF_LONG, # Valid image width
'PixelXDimension' => MW_EXIF_SHORT.','.MW_EXIF_LONG, # Valind image height
2005-05-07 12:52:54 +00:00
),
# Tags relating to related user information
'user' => array(
'MakerNote' => MW_EXIF_UNDEFINED, # Manufacturer notes
'UserComment' => MW_EXIF_UNDEFINED, # User comments #p34
2005-05-07 12:52:54 +00:00
),
# Tags relating to related file information
'related' => array(
'RelatedSoundFile' => MW_EXIF_ASCII, # Related audio file
2005-05-07 12:52:54 +00:00
),
# Tags relating to date and time
'dateandtime' => array(
'DateTimeOriginal' => MW_EXIF_ASCII, # Date and time of original data generation #p36
'DateTimeDigitized' => MW_EXIF_ASCII, # Date and time of original data generation
'SubSecTime' => MW_EXIF_ASCII, # DateTime subseconds
'SubSecTimeOriginal' => MW_EXIF_ASCII, # DateTimeOriginal subseconds
'SubSecTimeDigitized' => MW_EXIF_ASCII, # DateTimeDigitized subseconds
2005-05-07 12:52:54 +00:00
),
# Tags relating to picture-taking conditions (p31)
'conditions' => array(
'ExposureTime' => MW_EXIF_RATIONAL, # Exposure time
'FNumber' => MW_EXIF_RATIONAL, # F Number
'ExposureProgram' => MW_EXIF_SHORT, # Exposure Program #p38
'SpectralSensitivity' => MW_EXIF_ASCII, # Spectral sensitivity
'ISOSpeedRatings' => MW_EXIF_SHORT, # ISO speed rating
'OECF' => MW_EXIF_UNDEFINED, # Optoelectronic conversion factor
'ShutterSpeedValue' => MW_EXIF_SRATIONAL, # Shutter speed
'ApertureValue' => MW_EXIF_RATIONAL, # Aperture
'BrightnessValue' => MW_EXIF_SRATIONAL, # Brightness
'ExposureBiasValue' => MW_EXIF_SRATIONAL, # Exposure bias
'MaxApertureValue' => MW_EXIF_RATIONAL, # Maximum land aperture
'SubjectDistance' => MW_EXIF_RATIONAL, # Subject distance
'MeteringMode' => MW_EXIF_SHORT, # Metering mode #p40
'LightSource' => MW_EXIF_SHORT, # Light source #p40-41
'Flash' => MW_EXIF_SHORT, # Flash #p41-42
'FocalLength' => MW_EXIF_RATIONAL, # Lens focal length
'SubjectArea' => MW_EXIF_SHORT, # Subject area
'FlashEnergy' => MW_EXIF_RATIONAL, # Flash energy
'SpatialFrequencyResponse' => MW_EXIF_UNDEFINED, # Spatial frequency response
'FocalPlaneXResolution' => MW_EXIF_RATIONAL, # Focal plane X resolution
'FocalPlaneYResolution' => MW_EXIF_RATIONAL, # Focal plane Y resolution
'FocalPlaneResolutionUnit' => MW_EXIF_SHORT, # Focal plane resolution unit
'SubjectLocation' => MW_EXIF_SHORT, # Subject location
'ExposureIndex' => MW_EXIF_RATIONAL, # Exposure index
'SensingMethod' => MW_EXIF_SHORT, # Sensing method #p46
'FileSource' => MW_EXIF_UNDEFINED, # File source #p47
'SceneType' => MW_EXIF_UNDEFINED, # Scene type #p47
'CFAPattern' => MW_EXIF_UNDEFINED, # CFA pattern
'CustomRendered' => MW_EXIF_SHORT, # Custom image processing #p48
'ExposureMode' => MW_EXIF_SHORT, # Exposure mode #p48
'WhiteBalance' => MW_EXIF_SHORT, # White Balance #p49
'DigitalZoomRatio' => MW_EXIF_RATIONAL, # Digital zoom ration
'FocalLengthIn35mmFilm' => MW_EXIF_SHORT, # Focal length in 35 mm film
'SceneCaptureType' => MW_EXIF_SHORT, # Scene capture type #p49
'GainControl' => MW_EXIF_RATIONAL, # Scene control #p49-50
'Contrast' => MW_EXIF_SHORT, # Contrast #p50
'Saturation' => MW_EXIF_SHORT, # Saturation #p50
'Sharpness' => MW_EXIF_SHORT, # Sharpness #p50
'DeviceSettingDescription' => MW_EXIF_UNDEFINED, # Desice settings description
'SubjectDistanceRange' => MW_EXIF_SHORT, # Subject distance range #p51
2005-05-07 12:52:54 +00:00
),
'other' => array(
'ImageUniqueID' => MW_EXIF_ASCII, # Unique image ID
2005-05-07 12:52:54 +00:00
),
),
# GPS Attribute Information (p52)
'gps' => array(
'GPSVersionID' => MW_EXIF_BYTE, # GPS tag version
'GPSLatitudeRef' => MW_EXIF_ASCII, # North or South Latitude #p52-53
'GPSLatitude' => MW_EXIF_RATIONAL, # Latitude
'GPSLongitudeRef' => MW_EXIF_ASCII, # East or West Longitude #p53
'GPSLongitude' => MW_EXIF_RATIONAL, # Longitude
'GPSAltitudeRef' => MW_EXIF_BYTE, # Altitude reference
'GPSAltitude' => MW_EXIF_RATIONAL, # Altitude
'GPSTimeStamp' => MW_EXIF_RATIONAL, # GPS time (atomic clock)
'GPSSatellites' => MW_EXIF_ASCII, # Satellites used for measurement
'GPSStatus' => MW_EXIF_ASCII, # Receiver status #p54
'GPSMeasureMode' => MW_EXIF_ASCII, # Measurement mode #p54-55
'GPSDOP' => MW_EXIF_RATIONAL, # Measurement precision
'GPSSpeedRef' => MW_EXIF_ASCII, # Speed unit #p55
'GPSSpeed' => MW_EXIF_RATIONAL, # Speed of GPS receiver
'GPSTrackRef' => MW_EXIF_ASCII, # Reference for direction of movement #p55
'GPSTrack' => MW_EXIF_RATIONAL, # Direction of movement
'GPSImgDirectionRef' => MW_EXIF_ASCII, # Reference for direction of image #p56
'GPSImgDirection' => MW_EXIF_RATIONAL, # Direction of image
'GPSMapDatum' => MW_EXIF_ASCII, # Geodetic survey data used
'GPSDestLatitudeRef' => MW_EXIF_ASCII, # Reference for latitude of destination #p56
'GPSDestLatitude' => MW_EXIF_RATIONAL, # Latitude destination
'GPSDestLongitudeRef' => MW_EXIF_ASCII, # Reference for longitude of destination #p57
'GPSDestLongitude' => MW_EXIF_RATIONAL, # Longitude of destination
'GPSDestBearingRef' => MW_EXIF_ASCII, # Reference for bearing of destination #p57
'GPSDestBearing' => MW_EXIF_RATIONAL, # Bearing of destination
'GPSDestDistanceRef' => MW_EXIF_ASCII, # Reference for distance to destination #p57-58
'GPSDestDistance' => MW_EXIF_RATIONAL, # Distance to destination
'GPSProcessingMethod' => MW_EXIF_UNDEFINED, # Name of GPS processing method
'GPSAreaInformation' => MW_EXIF_UNDEFINED, # Name of GPS area
'GPSDateStamp' => MW_EXIF_ASCII, # GPS date
'GPSDifferential' => MW_EXIF_SHORT, # GPS differential correction
2005-05-07 12:52:54 +00:00
),
);
$this->makeFlatExifTags();
}
/**
* Generate a flat list of the exif tags
*/
function makeFlatExifTags() {
$this->extractTags( $this->mExif );
2005-05-07 12:52:54 +00:00
}
/**
* A recursing extractor function used by makeFlatExifTags()
*
* Note: This used to use an array_walk function, but it made PHP5
* segfault, see `cvs diff -u -r 1.4 -r 1.5 Exif.php`
2005-05-07 12:52:54 +00:00
*/
function extractTags( $tagset ) {
foreach( $tagset as $key => $val ) {
if( is_array( $val ) ) {
$this->extractTags( $val );
} else {
$this->mFlatExif[$key] = $val;
}
}
2005-05-07 12:52:54 +00:00
}
2005-05-07 12:52:54 +00:00
/**
* The version of the output format
*
* Before the actual metadata information is saved in the database we
* strip some of it since we don't want to save things like thumbnails
* which usually accompany Exif data. This value gets saved in the
* database along with the actual Exif data, and if the version in the
* database doesn't equal the value returned by this function the Exif
* data is regenerated.
*
* @return int
*/
function version() {
return 1; // We don't need no bloddy constants!
}
/**#@+
* Validates if a tag value is of the type it should be according to the Exif spec
*
* @param mixed $in The input value to check
* @return bool
*/
function isByte( $in ) {
$fname = 'isByte';
if ( is_numeric( $in ) && $in >= 0 && $in <= 255 ) {
wfDebug("Exif::$fname: accepted: '$in' (type: " . gettype( $in ) . ")\n");
return true;
} else {
wfDebug("Exif::$fname: rejected: '$in' (type: " . gettype( $in ) . ")\n");
return false;
}
}
function isASCII( $in ) {
wfDebug("Exif::isASCII: input was '$in'\n");
return true; // TODO: FIXME
}
function isShort( $in ) {
$fname = 'isShort';
if ( is_numeric( $in ) && $in >= 0 && $in <= 65536 ) {
wfDebug("Exif::$fname: accepted: '$in' (type: " . gettype( $in ) . ")\n");
return true;
} else {
wfDebug("Exif::$fname: rejected: '$in' (type: " . gettype( $in ) . ")\n");
return false;
}
}
function isLong( $in ) {
$fname = 'isLong';
if ( is_numeric( $in ) && $in >= 0 && $in <= 4294967296 ) {
wfDebug("Exif::$fname: accepted: '$in' (type: " . gettype( $in ) . ")\n");
return true;
} else {
wfDebug("Exif::$fname: rejected: '$in' (type: " . gettype( $in ) . ")\n");
return false;
}
}
function isRational( $in ) {
$fname = 'isRational';
$a = explode( '/', $in, 2 );
if ( $this->isLong( $a[0] ) && $this->isLong( $a[1] ) ) {
wfDebug("Exif::$fname: accepted: '$in' (type: " . gettype( $in ) . ")\n");
return true;
} else {
wfDebug("Exif::$fname: rejected: '$in' (type: " . gettype( $in ) . ")\n");
return false;
}
}
/**
* In order not to output binary gibberish such as raw thumbnails we
* return false here
*
* @todo We might actually want to display some of the UNDEFINED
* stuff, but we strip it for now.
*/
function isUndefined( $in ) {
$fname = 'isUndefined';
wfDebug("Exif::$fname: input was '$in'\n");
return false;
}
function isSlong( $in ) {
$fname = 'isSlong';
if ( $this->isLong( abs( $in ) ) ) {
wfDebug("Exif::$fname: accepted: '$in' (type: " . gettype( $in ) . ")\n");
return true;
} else {
wfDebug("Exif::$fname: rejected: '$in' (type: " . gettype( $in ) . ")\n");
return false;
}
}
function isSrational( $in ) {
$fname = 'isSrational';
$a = explode( '/', $in, 2 );
if ( $this->isSlong( $a[0] ) && $this->isSlong( $a[1] ) ) {
wfDebug("Exif::$fname: accepted: '$in' (type: " . gettype( $in ) . ")\n");
return true;
} else {
wfDebug("Exif::$fname: rejected: '$in' (type: " . gettype( $in ) . ")\n");
return false;
}
}
/**#@-*/
/**
* Validates if a tag has a legal value according to the Exif spec
*
* @param string $tag The tag to check
* @param mixed $val The value of the tag
* @return bool
*/
function validate( $tag, $val ) {
// Fucks up if not typecast
switch( (string)$this->mFlatExif[$tag] ) {
case (string)MW_EXIF_BYTE:
return $this->isByte( $val );
case (string)MW_EXIF_ASCII:
return $this->isASCII( $val );
case (string)MW_EXIF_SHORT:
return $this->isShort( $val );
case (string)MW_EXIF_LONG:
return $this->isLong( $val );
case (string)MW_EXIF_RATIONAL:
return $this->isRational( $val );
case (string)MW_EXIF_UNDEFINED:
return $this->isUndefined( $val );
case (string)MW_EXIF_SLONG:
return $this->isSlong( $val );
case (string)MW_EXIF_SRATIONAL:
return $this->isSrational( $val );
case (string)MW_EXIF_SHORT.','.MW_EXIF_LONG:
return $this->isShort( $val ) || $this->isLong( $val );
default:
wfDebug( "Exif::validate: The tag \"$tag\" had an invalid value: \"$val\"\n" );
return false;
}
}
/**
* Numbers given by Exif user agents are often magical, that is they
* should be replaced by a detailed explanation depending on their
* value which most of the time are plain integers. This function
* formats Exif values into human readable form.
*
* @param string $tag The tag to be formatted
* @param mixed $val The value of the tag
* @return string
*/
function format( $tag, $val ) {
global $wgLang;
switch( $tag ) {
case 'Compression':
switch( $val ) {
case 1: case 6:
return $this->msg( $tag, $val );
}
break;
case 'PhotometricInterpretation':
switch( $val ) {
case 2: case 6:
return $this->msg( $tag, $val );
}
break;
case 'Orientation':
switch( $val ) {
case 1: case 2: case 3: case 4: case 5: case 6: case 7: case 8:
return $this->msg( $tag, $val );
}
break;
case 'PlanarConfiguration':
switch( $val ) {
case 1: case 2:
return $this->msg( $tag, $val );
}
break;
// TODO: YCbCrSubSampling
// TODO: YCbCrPositioning
// TODO: If this field does not exists use 2
case 'ResolutionUnit': #p26
switch( $val ) {
case 2: case 3:
return $this->msg( $tag, $val );
}
break;
// TODO: YCbCrCoefficients #p27 (see annex E)
case 'ExifVersion': case 'FlashpixVersion':
return "$val"/100;
case 'ColorSpace':
switch( $val ) {
case 1: case 'FFFF.H':
return $this->msg( $tag, $val );
}
break;
case 'ComponentsConfiguration':
switch( $val ) {
case 0: case 1: case 2: case 3: case 4: case 5: case 6:
return $this->msg( $tag, $val );
}
break;
case 'DateTime':
case 'DateTimeOriginal':
case 'DateTimeDigitized':
return $wgLang->timeanddate( wfTimestamp(TS_MW, $val) );
case 'ExposureProgram':
switch( $val ) {
case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7: case 8:
return $this->msg( $tag, $val );
}
break;
case 'MeteringMode':
switch( $val ) {
case 0: case 1: case 2: case 3: case 4: case 5: case 6: case 7: case 255:
return $this->msg( $tag, $val );
}
break;
case 'LightSource':
switch( $val ) {
case 0: case 1: case 2: case 3: case 4: case 9: case 10: case 11:
case 12: case 13: case 14: case 15: case 17: case 18: case 19: case 20:
case 21: case 22: case 23: case 24: case 255:
return $this->msg( $tag, $val );
}
break;
// TODO: Flash
case 'SensingMethod':
switch( $val ) {
case 1: case 2: case 3: case 4: case 5: case 7: case 8:
return $this->msg( $tag, $val );
}
break;
case 'FileSource':
switch( $val ) {
case 3:
return $this->msg( $tag, $val );
}
break;
case 'SceneType':
switch( $val ) {
case 1:
return $this->msg( $tag, $val );
}
break;
case 'CustomRendered':
switch( $val ) {
case 0: case 1:
return $this->msg( $tag, $val );
}
break;
case 'ExposureMode':
switch( $val ) {
case 0: case 1: case 2:
return $this->msg( $tag, $val );
}
break;
case 'WhiteBalance':
switch( $val ) {
case 0: case 1:
return $this->msg( $tag, $val );
}
break;
case 'SceneCaptureType':
switch( $val ) {
case 0: case 1: case 2: case 3:
return $this->msg( $tag, $val );
}
break;
case 'GainControl':
switch( $val ) {
case 0: case 1: case 2: case 3: case 4:
return $this->msg( $tag, $val );
}
break;
case 'Contrast':
switch( $val ) {
case 0: case 1: case 2:
return $this->msg( $tag, $val );
}
break;
case 'Saturation':
switch( $val ) {
case 0: case 1: case 2:
return $this->msg( $tag, $val );
}
break;
case 'Sharpness':
switch( $val ) {
case 0: case 1: case 2:
return $this->msg( $tag, $val );
}
break;
case 'SubjectDistanceRange':
switch( $val ) {
case 0: case 1: case 2: case 3:
return $this->msg( $tag, $val );
}
break;
case 'GPSLatitudeRef':
switch( $val ) {
case 'N': case 'S':
return $this->msg( $tag, $val );
}
break;
case 'GPSLongitudeRef':
switch( $val ) {
case 'E': case 'W':
return $this->msg( $tag, $val );
}
break;
case 'GPSStatus':
switch( $val ) {
case 'A': case 'V':
return $this->msg( $tag, $val );
}
break;
case 'GPSMeasureMode':
switch( $val ) {
case 2: case 3:
return $this->msg( $tag, $val );
}
break;
case 'GPSSpeedRef':
switch( $val ) {
case 'K': case 'M': case 'N':
return $this->msg( $tag, $val );
}
break;
case 'GPSTrackRef':
switch( $val ) {
case 'T': case 'M':
return $this->msg( $tag, $val );
}
break;
case 'GPSImgDirectionRef':
switch( $val ) {
case 'T': case 'M':
return $this->msg( $tag, $val );
}
break;
case 'GPSDestLatitudeRef':
switch( $val ) {
case 'N': case 'S':
return $this->msg( $tag, $val );
}
break;
case 'GPSDestLongitudeRef':
switch( $val ) {
case 'E': case 'W':
return $this->msg( $tag, $val );
}
break;
case 'GPSDestBearingRef':
switch( $val ) {
case 'T': case 'M':
return $this->msg( $tag, $val );
}
break;
case 'GPSDateStamp':
return $wgLang->date( substr( $val, 0, 4 ) . substr( $val, 5, 2 ) . substr( $val, 8, 2 ) . '000000' );
// This is not in the Exif standard, just a special
// case for our purposes which enables wikis to wikify
// the make, model and software name to link to their articles.
case 'Make':
case 'Model':
case 'Software':
return wfMsg( strtolower( "exif-$tag-value" ), $val );
default:
return $val;
}
}
/**
* Conviniance function for format()
*
* @param string $tag The tag name to pass on
* @param string $val The value of the tag
* @return string A wfMsg of "exif-$tag-$val" in lower case
*/
function msg( $tag, $val ) {
return wfMsg( strtolower("exif-$tag-$val") );
}
2005-05-07 12:52:54 +00:00
}
2005-05-07 12:52:54 +00:00
} // MEDIAWIKI