MediaWiki master
TiffHandler.php
Go to the documentation of this file.
1<?php
14
24 private const EXPENSIVE_SIZE_LIMIT = 10_485_760;
25
37 public function canRender( $file ) {
38 $tiffThumbnailType = MediaWikiServices::getInstance()->getMainConfig()
39 ->get( MainConfigNames::TiffThumbnailType );
40
41 return (bool)$tiffThumbnailType
42 || $file->getRepo() instanceof ForeignAPIRepo;
43 }
44
52 public function mustRender( $file ) {
53 return true;
54 }
55
62 public function getThumbType( $ext, $mime, $params = null ) {
63 $tiffThumbnailType = MediaWikiServices::getInstance()->getMainConfig()
64 ->get( MainConfigNames::TiffThumbnailType );
65
66 return $tiffThumbnailType;
67 }
68
70 public function getSizeAndMetadata( $state, $filename ) {
71 $showEXIF = MediaWikiServices::getInstance()->getMainConfig()->get( MainConfigNames::ShowEXIF );
72
73 try {
74 $meta = BitmapMetadataHandler::Tiff( $filename );
75 if ( !is_array( $meta ) ) {
76 // This should never happen, but doesn't hurt to be paranoid.
77 throw new InvalidTiffException( 'Metadata array is not an array' );
78 }
79 $info = [
80 'width' => $meta['ImageWidth'] ?? 0,
81 'height' => $meta['ImageLength'] ?? 0,
82 ];
83 $info = $this->applyExifRotation( $info, $meta );
84 if ( $showEXIF ) {
85 $meta['MEDIAWIKI_EXIF_VERSION'] = Exif::version();
86 $info['metadata'] = $meta;
87 }
88 return $info;
89 } catch ( InvalidTiffException $e ) {
90 // BitmapMetadataHandler throws an exception in certain exceptional
91 // cases like if file does not exist.
92 wfDebug( __METHOD__ . ': ' . $e->getMessage() );
93
94 return [ 'metadata' => [ '_error' => ExifBitmapHandler::BROKEN_FILE ] ];
95 }
96 }
97
99 public function isExpensiveToThumbnail( $file ) {
100 return $file->getSize() > static::EXPENSIVE_SIZE_LIMIT;
101 }
102}
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
static Tiff( $filename)
This doesn't do much yet, but eventually I plan to add XMP support for Tiff.
Stuff specific to JPEG and (built-in) TIFF handler.
applyExifRotation( $info, $metadata)
const BROKEN_FILE
Error extracting metadata.
static version()
The version of the output format.
Definition Exif.php:693
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition File.php:79
A foreign repository for a remote MediaWiki accessible through api.php requests.
A class containing constants representing the names of configuration variables.
Service locator for MediaWiki core services.
Handler for Tiff images.
isExpensiveToThumbnail( $file)
True if creating thumbnails from the file is large or otherwise resource-intensive....
getThumbType( $ext, $mime, $params=null)
canRender( $file)
Conversion to PNG for inline display can be disabled here... Note scaling should work with ImageMagic...
mustRender( $file)
Browsers don't support TIFF inline generally... For inline display, we need to convert to PNG.
getSizeAndMetadata( $state, $filename)
Get image size information and metadata array.If this returns null, the caller will fall back to getI...