mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-04 21:50:54 +03:00
7 lines
96 B
Python
7 lines
96 B
Python
from PIL import Image
|
|
import sys
|
|
|
|
|
|
if sys.maxsize < 2**32:
|
|
Image.core.set_blocks_max(2**29)
|