示例#1
0
def test_g4_lena(): 
    """The 128x128 lena image fails for some reason. Investigating"""

    file = "Tests/images/lena_g4.tif"
    im = Image.open(file)

    assert_equal(im.size, (128,128))
    _assert_noerr(im)
示例#2
0
def test_g4_lena(): 
    """The 128x128 lena image fails for some reason. Investigating"""

    file = "Tests/images/lena_g4.tif"
    im = Image.open(file)

    assert_equal(im.size, (128,128))
    _assert_noerr(im)
        
示例#3
0
def test_g4_lena_file(): 
    """Testing the open file load path"""

    file = "Tests/images/lena_g4.tif"
    with open(file,'rb') as f:
        im = Image.open(f)

        assert_equal(im.size, (128,128))
        _assert_noerr(im)
示例#4
0
def test_g4_lena_bytesio(): 
    """Testing the bytesio loading code path"""
    from io import BytesIO
    file = "Tests/images/lena_g4.tif"
    s = BytesIO()
    with open(file,'rb') as f:
        s.write(f.read())
        s.seek(0)
    im = Image.open(s)

    assert_equal(im.size, (128,128))
    _assert_noerr(im)