X-Git-Url: http://git.shiar.net/minimedit.git/blobdiff_plain/d6bf8fa992cc01adc311b2ba80f29d7af466c2f3..50f9b29cc21f5adef555d3cf21940124ceadb0eb:/thumb/index.php diff --git a/thumb/index.php b/thumb/index.php index aadbf4f..104e1df 100644 --- a/thumb/index.php +++ b/thumb/index.php @@ -1,7 +1,5 @@ path, '/'), 2); $imgpath = preg_replace('{^(?=[0-9]+/)}', 'data/', $imgpath, 1); if (!file_exists($imgpath)) { @@ -28,7 +26,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 +87,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");