login: userless handler call to obtain metadata
[minimedit.git] / thumb / index.php
index aadbf4f91eb664d1abc0109ca477d5e4aa71559c..a6b5bd7d66cce6d27560b120955a3fae695aaaa1 100644 (file)
@@ -1,7 +1,6 @@
 <?php
-ob_clean();
-
-list ($size, $imgpath) = explode('/', ltrim($Args, '/'), 2);
+if (!$User) return;
+list ($size, $imgpath) = explode('/', ltrim($Page->path, '/'), 2);
 $imgpath = preg_replace('{^(?=[0-9]+/)}', 'data/', $imgpath, 1);
 
 if (!file_exists($imgpath)) {
@@ -28,7 +27,7 @@ catch (Throwable $e) {
        exit;
 }
 
-header('Cache-Control: max-age=2628000, immutable');
+header('Cache-Control: max-age=2628000');
 header('Content-type: '.mime_content_type($target));
 readfile($target);
 exit;
@@ -89,10 +88,15 @@ function mkthumb_exec($source, $target, $width, $height)
        }
        $cmd = implode(' ', array_map('escapeshellarg', [
                'convert',
+               '-delete', '1--1', # static
                '-trim',
-               '-background', 'white', '-layers', 'flatten',
+               '-background', 'white', '-layers', 'flatten', # opaque
+               '-auto-orient', # apply exif rotation
+               '-interlace', 'plane', # progressive
+               '-strip', '-taint', # omit metadata
+               '-sampling-factor', '4:2:0', '-colorspace', 'sRGB', # half chroma
                '-resize', "${width}x${height}",
-               '-quality', '90%',
+               '-quality', '85%',
                $source, "jpg:$target"
        ]));
        $return = shell_exec("$cmd 2>&1");