2023-12-21 14:13:31 +03:00
|
|
|
from __future__ import annotations
|
2024-01-20 14:23:03 +03:00
|
|
|
|
2023-06-27 07:43:58 +03:00
|
|
|
import sys
|
|
|
|
|
2020-02-12 19:29:19 +03:00
|
|
|
import pytest
|
2020-08-07 13:28:33 +03:00
|
|
|
|
2016-09-29 17:05:00 +03:00
|
|
|
from PIL import Image
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_overflow() -> None:
|
2020-02-12 19:29:19 +03:00
|
|
|
# There is the potential to overflow comparisons in map.c
|
|
|
|
# if there are > SIZE_MAX bytes in the image or if
|
|
|
|
# the file encodes an offset that makes
|
|
|
|
# (offset + size(bytes)) > SIZE_MAX
|
2016-09-29 17:05:00 +03:00
|
|
|
|
2020-02-12 19:29:19 +03:00
|
|
|
# Note that this image triggers the decompression bomb warning:
|
|
|
|
max_pixels = Image.MAX_IMAGE_PIXELS
|
|
|
|
Image.MAX_IMAGE_PIXELS = None
|
2016-09-29 17:05:00 +03:00
|
|
|
|
2020-02-12 19:29:19 +03:00
|
|
|
# This image hits the offset test.
|
|
|
|
with Image.open("Tests/images/l2rgb_read.bmp") as im:
|
2020-04-07 09:58:21 +03:00
|
|
|
with pytest.raises((ValueError, MemoryError, OSError)):
|
2020-02-12 19:29:19 +03:00
|
|
|
im.load()
|
2019-07-11 14:12:36 +03:00
|
|
|
|
2020-02-12 19:29:19 +03:00
|
|
|
Image.MAX_IMAGE_PIXELS = max_pixels
|
|
|
|
|
|
|
|
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_tobytes() -> None:
|
2021-08-24 11:19:45 +03:00
|
|
|
# Note that this image triggers the decompression bomb warning:
|
|
|
|
max_pixels = Image.MAX_IMAGE_PIXELS
|
|
|
|
Image.MAX_IMAGE_PIXELS = None
|
|
|
|
|
2021-01-30 05:01:42 +03:00
|
|
|
# Previously raised an access violation on Windows
|
|
|
|
with Image.open("Tests/images/l2rgb_read.bmp") as im:
|
|
|
|
with pytest.raises((ValueError, MemoryError, OSError)):
|
|
|
|
im.tobytes()
|
|
|
|
|
2021-08-24 11:19:45 +03:00
|
|
|
Image.MAX_IMAGE_PIXELS = max_pixels
|
|
|
|
|
2021-01-30 05:01:42 +03:00
|
|
|
|
2023-06-27 07:43:58 +03:00
|
|
|
@pytest.mark.skipif(sys.maxsize <= 2**32, reason="Requires 64-bit system")
|
2024-01-31 12:12:58 +03:00
|
|
|
def test_ysize() -> None:
|
2020-02-18 15:30:56 +03:00
|
|
|
numpy = pytest.importorskip("numpy", reason="NumPy not installed")
|
|
|
|
|
2020-02-12 19:29:19 +03:00
|
|
|
# Should not raise 'Integer overflow in ysize'
|
|
|
|
arr = numpy.zeros((46341, 46341), dtype=numpy.uint8)
|
|
|
|
Image.fromarray(arr)
|