From 789566529b9f0a476f12a8814c0448a4e1156eb5 Mon Sep 17 00:00:00 2001 From: Gilles Dubuc Date: Tue, 23 Sep 2014 17:09:36 +0200 Subject: [PATCH] Disable thumbnail chaining support for PNGs Bug: 67525 Change-Id: Id2a57d6fc6b0f415b88b7185220c33c70fee33e7 Mingle: https://wikimedia.mingle.thoughtworks.com/projects/multimedia/cards/600 --- includes/media/PNG.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/includes/media/PNG.php b/includes/media/PNG.php index 7b3ddb5126..3cf8488d74 100644 --- a/includes/media/PNG.php +++ b/includes/media/PNG.php @@ -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; } } -- 2.20.1