123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- <?php
- /**
- * Media-handling base classes and generic functionality.
- *
- * 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.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * http://www.gnu.org/copyleft/gpl.html
- *
- * @file
- * @ingroup Media
- */
- /**
- * Media handler abstract base class for images
- *
- * @ingroup Media
- */
- abstract class ImageHandler extends MediaHandler {
- /**
- * @param File $file
- * @return bool
- */
- public function canRender( $file ) {
- return ( $file->getWidth() && $file->getHeight() );
- }
- public function getParamMap() {
- return [ 'img_width' => 'width' ];
- }
- public function validateParam( $name, $value ) {
- if ( in_array( $name, [ 'width', 'height' ] ) ) {
- if ( $value <= 0 ) {
- return false;
- } else {
- return true;
- }
- } else {
- return false;
- }
- }
- public function makeParamString( $params ) {
- if ( isset( $params['physicalWidth'] ) ) {
- $width = $params['physicalWidth'];
- } elseif ( isset( $params['width'] ) ) {
- $width = $params['width'];
- } else {
- throw new MediaTransformInvalidParametersException( 'No width specified to ' . __METHOD__ );
- }
- # Removed for ProofreadPage
- # $width = intval( $width );
- return "{$width}px";
- }
- public function parseParamString( $str ) {
- $m = false;
- if ( preg_match( '/^(\d+)px$/', $str, $m ) ) {
- return [ 'width' => $m[1] ];
- } else {
- return false;
- }
- }
- protected function getScriptParams( $params ) {
- return [ 'width' => $params['width'] ];
- }
- /**
- * @param File $image
- * @param array &$params
- * @return bool
- */
- public function normaliseParams( $image, &$params ) {
- $mimeType = $image->getMimeType();
- if ( !isset( $params['width'] ) ) {
- return false;
- }
- if ( !isset( $params['page'] ) ) {
- $params['page'] = 1;
- } else {
- $params['page'] = intval( $params['page'] );
- if ( $params['page'] > $image->pageCount() ) {
- $params['page'] = $image->pageCount();
- }
- if ( $params['page'] < 1 ) {
- $params['page'] = 1;
- }
- }
- $srcWidth = $image->getWidth( $params['page'] );
- $srcHeight = $image->getHeight( $params['page'] );
- if ( isset( $params['height'] ) && $params['height'] != -1 ) {
- # Height & width were both set
- if ( $params['width'] * $srcHeight > $params['height'] * $srcWidth ) {
- # Height is the relative smaller dimension, so scale width accordingly
- $params['width'] = self::fitBoxWidth( $srcWidth, $srcHeight, $params['height'] );
- if ( $params['width'] == 0 ) {
- # Very small image, so we need to rely on client side scaling :(
- $params['width'] = 1;
- }
- $params['physicalWidth'] = $params['width'];
- } else {
- # Height was crap, unset it so that it will be calculated later
- unset( $params['height'] );
- }
- }
- if ( !isset( $params['physicalWidth'] ) ) {
- # Passed all validations, so set the physicalWidth
- $params['physicalWidth'] = $params['width'];
- }
- # Because thumbs are only referred to by width, the height always needs
- # to be scaled by the width to keep the thumbnail sizes consistent,
- # even if it was set inside the if block above
- $params['physicalHeight'] = File::scaleHeight( $srcWidth, $srcHeight,
- $params['physicalWidth'] );
- # Set the height if it was not validated in the if block higher up
- if ( !isset( $params['height'] ) || $params['height'] == -1 ) {
- $params['height'] = $params['physicalHeight'];
- }
- if ( !$this->validateThumbParams( $params['physicalWidth'],
- $params['physicalHeight'], $srcWidth, $srcHeight, $mimeType )
- ) {
- return false;
- }
- return true;
- }
- /**
- * Validate thumbnail parameters and fill in the correct height
- *
- * @param int &$width Specified width (input/output)
- * @param int &$height Height (output only)
- * @param int $srcWidth Width of the source image
- * @param int $srcHeight Height of the source image
- * @param string $mimeType Unused
- * @return bool False to indicate that an error should be returned to the user.
- */
- function validateThumbParams( &$width, &$height, $srcWidth, $srcHeight, $mimeType ) {
- $width = intval( $width );
- # Sanity check $width
- if ( $width <= 0 ) {
- wfDebug( __METHOD__ . ": Invalid destination width: $width\n" );
- return false;
- }
- if ( $srcWidth <= 0 ) {
- wfDebug( __METHOD__ . ": Invalid source width: $srcWidth\n" );
- return false;
- }
- $height = File::scaleHeight( $srcWidth, $srcHeight, $width );
- if ( $height == 0 ) {
- # Force height to be at least 1 pixel
- $height = 1;
- }
- return true;
- }
- /**
- * @param File $image
- * @param string $script
- * @param array $params
- * @return bool|MediaTransformOutput
- */
- function getScriptedTransform( $image, $script, $params ) {
- if ( !$this->normaliseParams( $image, $params ) ) {
- return false;
- }
- $url = wfAppendQuery( $script, $this->getScriptParams( $params ) );
- if ( $image->mustRender() || $params['width'] < $image->getWidth() ) {
- return new ThumbnailImage( $image, $url, false, $params );
- }
- }
- function getImageSize( $image, $path ) {
- Wikimedia\suppressWarnings();
- $gis = getimagesize( $path );
- Wikimedia\restoreWarnings();
- return $gis;
- }
- /**
- * Function that returns the number of pixels to be thumbnailed.
- * Intended for animated GIFs to multiply by the number of frames.
- *
- * If the file doesn't support a notion of "area" return 0.
- *
- * @param File $image
- * @return int
- */
- function getImageArea( $image ) {
- return $image->getWidth() * $image->getHeight();
- }
- /**
- * @param File $file
- * @return string
- */
- function getShortDesc( $file ) {
- global $wgLang;
- $nbytes = htmlspecialchars( $wgLang->formatSize( $file->getSize() ) );
- $widthheight = wfMessage( 'widthheight' )
- ->numParams( $file->getWidth(), $file->getHeight() )->escaped();
- return "$widthheight ($nbytes)";
- }
- /**
- * @param File $file
- * @return string
- */
- public function getLongDesc( $file ) {
- global $wgLang;
- $pages = $file->pageCount();
- $size = htmlspecialchars( $wgLang->formatSize( $file->getSize() ) );
- if ( $pages === false || $pages <= 1 ) {
- $msg = wfMessage( 'file-info-size' )->numParams( $file->getWidth(),
- $file->getHeight() )->params( $size,
- '<span class="mime-type">' . $file->getMimeType() . '</span>' )->parse();
- } else {
- $msg = wfMessage( 'file-info-size-pages' )->numParams( $file->getWidth(),
- $file->getHeight() )->params( $size,
- '<span class="mime-type">' . $file->getMimeType() . '</span>' )->numParams( $pages )->parse();
- }
- return $msg;
- }
- /**
- * @param File $file
- * @return string
- */
- function getDimensionsString( $file ) {
- $pages = $file->pageCount();
- if ( $pages > 1 ) {
- return wfMessage( 'widthheightpage' )
- ->numParams( $file->getWidth(), $file->getHeight(), $pages )->text();
- } else {
- return wfMessage( 'widthheight' )
- ->numParams( $file->getWidth(), $file->getHeight() )->text();
- }
- }
- public function sanitizeParamsForBucketing( $params ) {
- $params = parent::sanitizeParamsForBucketing( $params );
- // We unset the height parameters in order to let normaliseParams recalculate them
- // Otherwise there might be a height discrepancy
- if ( isset( $params['height'] ) ) {
- unset( $params['height'] );
- }
- if ( isset( $params['physicalHeight'] ) ) {
- unset( $params['physicalHeight'] );
- }
- return $params;
- }
- }
|