Slightly simplify imgformat retrieval #201

Open
mara0004 wants to merge 2 commits from mara0004/img2pdf:imgformat into main
Showing only changes of commit 132464c0a1 - Show all commits

View file

@ -1832,11 +1832,9 @@ def read_images(
)
else:
logger.debug("PIL format = %s", imgdata.format)
imgformat = None
for f in ImageFormat:
if f.name == imgdata.format:
imgformat = f
if imgformat is None:
try:
imgformat = ImageFormat[imgdata.format]
except KeyError:
imgformat = ImageFormat.other
def cleanup():