minor fixes

This commit is contained in:
Evgeny Sorokin 2024-06-26 15:21:26 +03:00
parent 42295b7b0a
commit 4e531014b5

View File

@ -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)) chunk_paths.append(((x, y, width, height), chunk_path))
full_image = merge_chunks(image_width, image_height, chunk_paths) 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__': if __name__ == '__main__':
@ -86,6 +86,6 @@ if __name__ == '__main__':
if args.skip_pages != 0 and page < args.skip_pages: if args.skip_pages != 0 and page < args.skip_pages:
page += 1 page += 1
continue 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') print(f'{page} done')
page += 1 page += 1