Pillow/Tests/check_j2k_overflow.py
2020-03-28 12:51:28 +11:00

10 lines
211 B
Python

import pytest
from PIL import Image
def test_j2k_overflow(tmp_path):
im = Image.new("RGBA", (1024, 131584))
target = str(tmp_path / "temp.jpc")
with pytest.raises(IOError):
im.save(target)