X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/85271527e754ad247974966b8899c1c2a3226b07..b2a5d4bdd4531f4062eadd63b5f065d4588c7f20:/thumb/index.php diff --git a/thumb/index.php b/thumb/index.php index f15a180..a6b5bd7 100644 --- a/thumb/index.php +++ b/thumb/index.php @@ -1,7 +1,6 @@ path, '/'), 2); $imgpath = preg_replace('{^(?=[0-9]+/)}', 'data/', $imgpath, 1); if (!file_exists($imgpath)) { @@ -28,6 +27,7 @@ catch (Throwable $e) { exit; } +header('Cache-Control: max-age=2628000'); header('Content-type: '.mime_content_type($target)); readfile($target); exit; @@ -88,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");