thumbnail generation

This commit is contained in:
jonaswinkler 2020-12-16 14:19:11 +01:00
parent e47b105185
commit b2e0a8c884

View File

@ -17,8 +17,8 @@ class TextDocumentParser(DocumentParser):
def read_text(): def read_text():
with open(document_path, 'r') as src: with open(document_path, 'r') as src:
lines = [line.strip() for line in src.readlines()] lines = [line.strip() for line in src.readlines()]
text = "\n".join([line for line in lines[:50]]) text = "\n".join(lines[:50])
return text.replace('"', "'") return text
img = Image.new("RGB", (500, 700), color="white") img = Image.new("RGB", (500, 700), color="white")
draw = ImageDraw.Draw(img) draw = ImageDraw.Draw(img)