Import pillow plugins
This commit is contained in:
parent
280606ae11
commit
7998944a71
@ -33,7 +33,7 @@ import settngs
|
||||
import comicapi.comicarchive
|
||||
import comicapi.utils
|
||||
import comictalker
|
||||
from comictaggerlib import cli, ctsettings
|
||||
from comictaggerlib import cli, ctsettings, pillow_plugins
|
||||
from comictaggerlib.ctsettings import ct_ns, plugin_finder
|
||||
from comictaggerlib.ctversion import version
|
||||
from comictaggerlib.log import setup_logging
|
||||
@ -48,6 +48,7 @@ logger = logging.getLogger("comictagger")
|
||||
|
||||
|
||||
logger.setLevel(logging.DEBUG)
|
||||
assert pillow_plugins
|
||||
|
||||
|
||||
def _lang_code_mac() -> str:
|
||||
|
14
comictaggerlib/pillow_plugins.py
Normal file
14
comictaggerlib/pillow_plugins.py
Normal file
@ -0,0 +1,14 @@
|
||||
from __future__ import annotations
|
||||
|
||||
try:
|
||||
import pillow_avif
|
||||
|
||||
assert pillow_avif
|
||||
except ImportError:
|
||||
pass
|
||||
try:
|
||||
import pillow_jxl
|
||||
|
||||
assert pillow_jxl
|
||||
except ImportError:
|
||||
pass
|
@ -130,11 +130,10 @@ if qt_available:
|
||||
if pil_available:
|
||||
# Qt doesn't understand the format, but maybe PIL does
|
||||
buffer = io.BytesIO()
|
||||
Image.open(io.BytesIO(image_data)).save(buffer, format='ppm')
|
||||
Image.open(io.BytesIO(image_data)).save(buffer, format="ppm")
|
||||
success = img.loadFromData(buffer.getvalue())
|
||||
except Exception:
|
||||
logger.exception("Failed to load the image")
|
||||
pass
|
||||
# if still nothing, go with default image
|
||||
if not success:
|
||||
img.load(":/graphics/nocover.png")
|
||||
|
Loading…
x
Reference in New Issue
Block a user