minor fixes
This commit is contained in:
parent
42295b7b0a
commit
4e531014b5
4
main.py
4
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user