Disable thumbnail chaining support for PNGs
authorGilles Dubuc <gdubuc@wikimedia.org>
Tue, 23 Sep 2014 15:09:36 +0000 (17:09 +0200)
committerGilles Dubuc <gdubuc@wikimedia.org>
Tue, 23 Sep 2014 15:09:36 +0000 (17:09 +0200)
Bug: 67525
Change-Id: Id2a57d6fc6b0f415b88b7185220c33c70fee33e7
Mingle: https://wikimedia.mingle.thoughtworks.com/projects/multimedia/cards/600

includes/media/PNG.php

index 7b3ddb5..3cf8488 100644 (file)
@@ -174,7 +174,10 @@ class PNGHandler extends BitmapHandler {
                return $wgLang->commaList( $info );
        }
 
+       // PNGs should be easy to support, but it will need some sharpening applied
+       // and another user test to check if the perceived quality change is noticeable
+
        public function supportsBucketing() {
-               return true;
+               return false;
        }
 }