Merge branch 'ocrd-cli' of github.com:qurator-spk/eynollah into ocrd-cli

This commit is contained in:
Konstantin Baierer 2021-04-15 15:28:18 +02:00
commit ba561ec833

View file

@ -18,9 +18,10 @@ def check_dpi(image_filename):
try:
exif = OcrdExif(Image.open(image_filename))
resolution = exif.resolution
if resolution == 1:
raise Exception()
if exif.resolutionUnit == 'cm':
resolution /= 2.54
return int(resolution)
except:
return 230