mirror of
https://github.com/qurator-spk/eynollah.git
synced 2025-06-08 19:59:56 +02:00
check_dpi: raise exception if resolution == 1 to trigger except clause
Co-authored-by: Robert Sachunsky <38561704+bertsky@users.noreply.github.com>
This commit is contained in:
parent
1367f82605
commit
d40c453dad
1 changed files with 2 additions and 1 deletions
|
@ -18,9 +18,10 @@ def check_dpi(image_filename):
|
||||||
try:
|
try:
|
||||||
exif = OcrdExif(Image.open(image_filename))
|
exif = OcrdExif(Image.open(image_filename))
|
||||||
resolution = exif.resolution
|
resolution = exif.resolution
|
||||||
|
if resolution == 1:
|
||||||
|
raise Exception()
|
||||||
if exif.resolutionUnit == 'cm':
|
if exif.resolutionUnit == 'cm':
|
||||||
resolution /= 2.54
|
resolution /= 2.54
|
||||||
return int(resolution)
|
return int(resolution)
|
||||||
except:
|
except:
|
||||||
return 230
|
return 230
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue