From 4e531014b50c22cfa03973e24bb06e5291d135ca Mon Sep 17 00:00:00 2001 From: Evgeny Sorokin Date: Wed, 26 Jun 2024 15:21:26 +0300 Subject: minor fixes --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.py') diff --git a/main.py b/main.py index 0a2662b..3bb8163 100755 --- a/main.py +++ b/main.py @@ -69,7 +69,7 @@ def download_and_merge_image(image_width, image_height, image_uuid, output_file) chunk_paths.append(((x, y, width, height), chunk_path)) full_image = merge_chunks(image_width, image_height, chunk_paths) - full_image.save(output_file) + full_image.save(output_file, subsampling=0, quality=99) if __name__ == '__main__': @@ -86,6 +86,6 @@ if __name__ == '__main__': if args.skip_pages != 0 and page < args.skip_pages: page += 1 continue - download_and_merge_image(c['width'], c['height'], extract_uuid(c['@id']), os.path.join(args.output_dir, f'{page}.jpg')) + download_and_merge_image(c['width'], c['height'], extract_uuid(c['@id']), os.path.join(args.output_dir, f'{page+1}.jpg')) print(f'{page} done') page += 1 -- cgit v1.2.3