Improve img2tables script.

This commit is contained in:
2019-01-09 14:20:52 +01:00
parent d951a44750
commit befaf553f6

View File

@@ -19,9 +19,9 @@ def img2tables(img_file, width=None, height=None) -> str:
html = """ html = """
<html> <html>
<body bgcolor=000000><table border=0 cellpadding=0 cellspacing=0> <body bgcolor=000000>
<table border=0 cellpadding=0 cellspacing=0>
""" """
print(f'Converting "{img_file}"')
for row in bar.ChargingBar('Running').iter(range(size_y)): for row in bar.ChargingBar('Running').iter(range(size_y)):
html += '<tr height=1>' html += '<tr height=1>'
for col in range(size_x): for col in range(size_x):
@@ -76,6 +76,7 @@ if __name__ == '__main__':
if args.size: if args.size:
size = args.size size = args.size
print(f'Starting conversion of "{args.image_path}"')
try: try:
html = img2tables(args.image_path, *size) html = img2tables(args.image_path, *size)
except KeyboardInterrupt: except KeyboardInterrupt: