33 $version = is_int( $version ) ? $version : (int)explode(
';', $version, 2 )[0];
34 if ( $version < 1 || $version >= 2 ) {
38 if ( !isset( $metadata[
'MEDIAWIKI_EXIF_VERSION'] ) || $metadata[
'MEDIAWIKI_EXIF_VERSION'] !== 2 ) {
44 if ( isset( $metadata[
'Software'] )
45 && is_array( $metadata[
'Software'] )
46 && is_array( $metadata[
'Software'][0] )
47 && isset( $metadata[
'Software'][0][0] )
48 && isset( $metadata[
'Software'][0][1] )
50 $metadata[
'Software'] = $metadata[
'Software'][0][0] .
' (Version '
51 . $metadata[
'Software'][0][1] .
')';
57 if ( isset( $metadata[
'Contact'] ) ) {
59 is_array( $metadata[
'Contact'] ) ? $metadata[
'Contact'] : [ $metadata[
'Contact'] ]
64 foreach ( [
'LocationShown',
'LocationCreated' ] as $metadataKey ) {
65 if ( isset( $metadata[ $metadataKey ] ) && !is_string( $metadata[ $metadataKey ] ) ) {
66 unset( $metadata[ $metadataKey ] );
70 foreach ( $metadata as &$val ) {
71 if ( is_array( $val ) ) {
73 $val = $formatter->flattenArrayReal( $val,
'ul',
true );
77 $metadata[
'MEDIAWIKI_EXIF_VERSION'] = 1;
87 $showEXIF = MediaWikiServices::getInstance()->getMainConfig()->get( MainConfigNames::ShowEXIF );
89 # Metadata disabled and so an empty field is expected
92 $exif = $image->getMetadataArray();
94 wfDebug( __METHOD__ .
': error unserializing?' );
97 if ( $exif === [
'_error' => self::OLD_BROKEN_FILE ] ) {
98 # Old special value indicating that there is no Exif data in the file.
99 # or that there was an error well extracting the metadata.
100 wfDebug( __METHOD__ .
": back-compat version" );
104 if ( $exif === [
'_error' => self::BROKEN_FILE ] ) {
108 if ( !isset( $exif[
'MEDIAWIKI_EXIF_VERSION'] )
111 if ( isset( $exif[
'MEDIAWIKI_EXIF_VERSION'] )
112 && $exif[
'MEDIAWIKI_EXIF_VERSION'] === 1
115 wfDebug( __METHOD__ .
": back-compat version" );
119 # Wrong (non-compatible) version
120 wfDebug( __METHOD__ .
": wrong version" );
148 unset( $exif[
'MEDIAWIKI_EXIF_VERSION'] );
170 if ( $rotation === 90 || $rotation === 270 ) {
171 $width = $info[
'width'];
172 $info[
'width'] = $info[
'height'];
173 $info[
'height'] = $width;
195 $orientation = $file->getMetadataItem(
'Orientation' );
208 if ( $orientation ===
null ) {
212 switch ( $orientation ) {
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Generic handler for bitmap images.
Stuff specific to JPEG and (built-in) TIFF handler.
getRotationForExifFromOrientation( $orientation)
Given a chunk of serialized Exif metadata, return the orientation as degrees of rotation.
getMetadataType( $image)
Get a string describing the type of metadata, for display purposes.to overrideThis method is currentl...
getCommonMetaArray(File $file)
Get an array of standard (FormatMetadata type) metadata values.The returned data is largely the same ...
applyExifRotation( $info, $metadata)
const OLD_BROKEN_FILE
Outdated error extracting metadata.
convertMetadataVersion( $metadata, $version=1)
Convert metadata version.By default just returns $metadata, but can be used to allow media handlers t...
getRotation( $file)
On supporting image formats, try to read out the low-level orientation of the file and return the ang...
isFileMetadataValid( $image)
const BROKEN_FILE
Error extracting metadata.
formatMetadata( $image, $context=false)
static version()
The version of the output format.
A class containing constants representing the names of configuration variables.
Interface for objects which can provide a MediaWiki context on request.