Manual:$wgEnableAutoRotation

From mediawiki.org
This page is a translated version of the page Manual:$wgEnableAutoRotation and the translation is 42% complete.
画像: $wgEnableAutoRotation
EXIF 情報に基づいて画像の自動回転を有効にするかどうか
導入されたバージョン:1.18.0 (r99910)
除去されたバージョン:使用中
許容される値:(真偽値)
既定値:true if the image rasterizer supports rotation, false otherwise

使用法

To explicitly disable image auto-rotation, add to the bottom of LocalSettings.php:

$wgEnableAutoRotation = false;

Explicitly setting to true is probably a bad idea (since if the image renderer supports rotation, it should be auto-detected).

詳細

If it is true, MediaWiki will look at the EXIF Orientation metadata field (which is set mainly by smartphones and some cameras, when pictures are taken sideways) and automatically rotate the image to the correct orientation.

If not set in LocalSettings.php (or if set to null) then this setting takes its value from BitmapHandler::canRotate() method - which returns true if the image rendering method supports rotation.

警告 警告: After changing this setting, if you have images that appear squished (width and height are reversed) you may have to run the maintenance script: php refreshImageMetadata.php --force --quiet
You can use ?action=purge on image pages to update scaled images (thumbnails, etc) after changing this.