fix bug with DPI calculation

This commit is contained in:
jonaswinkler 2021-08-18 18:33:33 +02:00
parent ba6843df83
commit 23c6f849d6

View File

@ -70,7 +70,7 @@ class RasterisedDocumentParser(DocumentParser):
try: try:
with Image.open(image) as im: with Image.open(image) as im:
x, y = im.info['dpi'] x, y = im.info['dpi']
return x return round(x)
except Exception as e: except Exception as e:
self.log( self.log(
'warning', 'warning',