Import pillow plugins

This commit is contained in:
Timmy Welch 2025-01-21 19:23:14 -08:00
parent 280606ae11
commit 7998944a71
3 changed files with 17 additions and 3 deletions

View File

@ -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:

View 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

View File

@ -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")