[FIX] tools: always preload PIL with basic formats

Ensures that only the desired list of images formats are made
available via PIL: BMP, GIF, PNG, JPEG, TIFF and PPM.
This commit is contained in:
Olivier Dony 2017-05-05 16:55:12 +02:00
parent e3081dbb7e
commit 58114e4954
No known key found for this signature in database
GPG Key ID: CD556E25E8A6D0D4
1 changed files with 4 additions and 0 deletions

View File

@ -28,6 +28,10 @@ from PIL import Image
from PIL import ImageEnhance
from random import randint
# Preload PIL with the minimal subset of image formats we need
Image.preinit()
Image._initialized = 2
# ----------------------------------------
# Image resizing
# ----------------------------------------