thumb: strip metadata and chroma
authorMischa POSLAWSKY <perl@shiar.org>
Sat, 18 Jan 2020 14:57:10 +0000 (15:57 +0100)
committerMischa POSLAWSKY <perl@shiar.org>
Sat, 16 May 2020 18:43:28 +0000 (20:43 +0200)
Decreased colour quality recommended by Google PageSpeed:
<https://developers.google.com/speed/docs/insights/OptimizeImages>

thumb/index.php

index c65cab3dab9ea7ebb2227ded9e4a2b984b845d7e..d296fbf1560e0f4d339912fa7e9aa6f8c5f575b9 100644 (file)
@@ -91,6 +91,8 @@ function mkthumb_exec($source, $target, $width, $height)
                '-trim',
                '-background', 'white', '-layers', 'flatten', # opaque
                '-interlace', 'plane', # progressive
+               '-strip', '-taint', # omit metadata
+               '-sampling-factor', '4:2:0', '-colorspace', 'sRGB', # half chroma
                '-resize', "${width}x${height}",
                '-quality', '85%',
                $source, "jpg:$target"