Pillow/Tests/test_image_putdata.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

126 lines
3.0 KiB
Python
Raw Permalink Normal View History

from __future__ import annotations
2024-01-20 14:23:03 +03:00
import sys
from array import array
import pytest
from PIL import Image
2020-02-12 19:29:19 +03:00
from .helper import assert_image_equal, hopper
def test_sanity() -> None:
2020-02-12 19:29:19 +03:00
im1 = hopper()
2020-02-12 19:29:19 +03:00
data = list(im1.getdata())
2020-02-12 19:29:19 +03:00
im2 = Image.new(im1.mode, im1.size, 0)
im2.putdata(data)
2020-02-12 19:29:19 +03:00
assert_image_equal(im1, im2)
2020-02-12 19:29:19 +03:00
# readonly
im2 = Image.new(im1.mode, im2.size, 0)
im2.readonly = 1
im2.putdata(data)
2020-02-12 19:29:19 +03:00
assert not im2.readonly
assert_image_equal(im1, im2)
2014-06-10 13:10:47 +04:00
def test_long_integers() -> None:
2020-02-12 19:29:19 +03:00
# see bug-200802-systemerror
def put(value: int) -> float | tuple[int, ...] | None:
2020-02-12 19:29:19 +03:00
im = Image.new("RGBA", (1, 1))
im.putdata([value])
return im.getpixel((0, 0))
2019-06-13 18:54:24 +03:00
2020-02-12 19:29:19 +03:00
assert put(0xFFFFFFFF) == (255, 255, 255, 255)
assert put(0xFFFFFFFF) == (255, 255, 255, 255)
assert put(-1) == (255, 255, 255, 255)
assert put(-1) == (255, 255, 255, 255)
2023-06-27 07:43:58 +03:00
if sys.maxsize > 2**32:
assert put(sys.maxsize) == (255, 255, 255, 255)
else:
assert put(sys.maxsize) == (255, 255, 255, 127)
2014-06-10 13:10:47 +04:00
2014-07-24 02:29:10 +04:00
def test_pypy_performance() -> None:
2020-02-12 19:29:19 +03:00
im = Image.new("L", (256, 256))
im.putdata(list(range(256)) * 256)
2014-07-29 09:09:52 +04:00
def test_mode_with_L_with_float() -> None:
im = Image.new("L", (1, 1), 0)
im.putdata([2.0])
assert im.getpixel((0, 0)) == 2
@pytest.mark.parametrize("mode", ("I", "I;16", "I;16L", "I;16B"))
2024-02-12 01:28:53 +03:00
def test_mode_i(mode: str) -> None:
2020-02-12 19:29:19 +03:00
src = hopper("L")
data = list(src.getdata())
im = Image.new(mode, src.size, 0)
2020-02-12 19:29:19 +03:00
im.putdata(data, 2, 256)
2014-07-29 09:09:52 +04:00
2020-02-12 19:29:19 +03:00
target = [2 * elt + 256 for elt in data]
assert list(im.getdata()) == target
2014-07-29 09:09:52 +04:00
2014-11-14 01:56:31 +03:00
def test_mode_F() -> None:
2020-02-12 19:29:19 +03:00
src = hopper("L")
data = list(src.getdata())
im = Image.new("F", src.size, 0)
im.putdata(data, 2.0, 256.0)
2014-11-14 01:56:31 +03:00
2020-02-12 19:29:19 +03:00
target = [2.0 * float(elt) + 256.0 for elt in data]
assert list(im.getdata()) == target
2015-04-24 02:26:52 +03:00
2014-11-14 01:56:31 +03:00
@pytest.mark.parametrize("mode", ("BGR;15", "BGR;16", "BGR;24"))
2024-02-12 01:28:53 +03:00
def test_mode_BGR(mode: str) -> None:
data = [(16, 32, 49), (32, 32, 98)]
2024-04-15 12:28:52 +03:00
with pytest.warns(DeprecationWarning):
im = Image.new(mode, (1, 2))
im.putdata(data)
assert list(im.getdata()) == data
def test_array_B() -> None:
2020-02-12 19:29:19 +03:00
# shouldn't segfault
# see https://github.com/python-pillow/Pillow/issues/1008
2014-11-14 01:56:31 +03:00
2020-02-12 19:29:19 +03:00
arr = array("B", [0]) * 15000
im = Image.new("L", (150, 100))
im.putdata(arr)
assert len(im.getdata()) == len(arr)
def test_array_F() -> None:
2020-02-12 19:29:19 +03:00
# shouldn't segfault
# see https://github.com/python-pillow/Pillow/issues/1008
im = Image.new("F", (150, 100))
arr = array("f", [0.0]) * 15000
im.putdata(arr)
assert len(im.getdata()) == len(arr)
def test_not_flattened() -> None:
im = Image.new("L", (1, 1))
with pytest.raises(TypeError):
2024-06-22 03:09:11 +03:00
im.putdata([[0]])
with pytest.raises(TypeError):
2024-06-22 03:09:11 +03:00
im.putdata([[0]], 2)
with pytest.raises(TypeError):
im = Image.new("I", (1, 1))
2024-06-22 03:09:11 +03:00
im.putdata([[0]])
with pytest.raises(TypeError):
im = Image.new("F", (1, 1))
2024-06-22 03:09:11 +03:00
im.putdata([[0]])