From 982565bd95fb4cc20748bb03cf42e50d1cd8f764 Mon Sep 17 00:00:00 2001 From: Sheldon Lee Date: Sun, 19 Nov 2023 13:27:12 +0800 Subject: [PATCH] Try to half image width instead of quarter for thumbnail --- scripts/resize-img | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/resize-img b/scripts/resize-img index 3a452c8..1ba1507 100755 --- a/scripts/resize-img +++ b/scripts/resize-img @@ -23,7 +23,7 @@ def main(): exit(1) width, height = image.size - target_width = int(max(width/4, 1280)) + target_width = int(max(width/2, 1280)) new_height = int(target_width * height / width) image = image.resize((target_width, new_height), Image.Resampling.BICUBIC)