Fix: respect deskew / rotate pages from AppConfig if set (#7501)

This commit is contained in:
shamoon 2024-08-19 19:38:40 -07:00 committed by GitHub
parent 037dcb6a11
commit 674b4a839c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,8 +70,14 @@ class OcrConfig(OutputTypeConfig):
)
self.image_dpi = app_config.image_dpi or settings.OCR_IMAGE_DPI
self.clean = app_config.unpaper_clean or settings.OCR_CLEAN
self.deskew = app_config.deskew or settings.OCR_DESKEW
self.rotate = app_config.rotate_pages or settings.OCR_ROTATE_PAGES
self.deskew = (
app_config.deskew if app_config.deskew is not None else settings.OCR_DESKEW
)
self.rotate = (
app_config.rotate_pages
if app_config.rotate_pages is not None
else settings.OCR_ROTATE_PAGES
)
self.rotate_threshold = (
app_config.rotate_pages_threshold or settings.OCR_ROTATE_PAGES_THRESHOLD
)