mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
SYN-208/SYN-228: Add runtime checks on startup to enforce that JPEG/PNG support is included when installing pillow.
This commit is contained in:
parent
3c8c3bf3b7
commit
78edb47cc5
@ -0,0 +1,29 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
import PIL.Image
|
||||||
|
|
||||||
|
# check for JPEG support.
|
||||||
|
try:
|
||||||
|
PIL.Image._getdecoder("rgb", "jpeg", None)
|
||||||
|
except IOError as e:
|
||||||
|
if str(e).startswith("decoder jpeg not available"):
|
||||||
|
raise Exception(
|
||||||
|
"FATAL: jpeg codec not supported. Install pillow correctly! "
|
||||||
|
" 'sudo apt-get install libjpeg-dev' then 'pip install -I pillow'"
|
||||||
|
)
|
||||||
|
except Exception:
|
||||||
|
# any other exception is fine
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
# check for PNG support.
|
||||||
|
try:
|
||||||
|
PIL.Image._getdecoder("rgb", "zip", None)
|
||||||
|
except IOError as e:
|
||||||
|
if str(e).startswith("decoder zip not available"):
|
||||||
|
raise Exception(
|
||||||
|
"FATAL: zip codec not supported. Install pillow correctly! "
|
||||||
|
" 'sudo apt-get install libjpeg-dev' then 'pip install -I pillow'"
|
||||||
|
)
|
||||||
|
except Exception:
|
||||||
|
# any other exception is fine
|
||||||
|
pass
|
Loading…
Reference in New Issue
Block a user