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)