예제 #1
0
def test_longer_width_longer_height():
    img_resolution = (150, 150)
    assert (100, 100) == _get_resized_resolution(img_resolution, BG_RESOLUTION)

    img_resolution = (200, 150)
    assert (100, 75) == _get_resized_resolution(img_resolution, BG_RESOLUTION)

    img_resolution = (150, 200)
    assert (75, 100) == _get_resized_resolution(img_resolution, BG_RESOLUTION)
예제 #2
0
def test_shorter_width_shorter_height():
    img_resolution = (50, 25)
    assert (100, 50) == _get_resized_resolution(img_resolution, BG_RESOLUTION)

    img_resolution = (50, 50)
    assert (100, 100) == _get_resized_resolution(img_resolution, BG_RESOLUTION)

    img_resolution = (50, 75)
    assert (67, 100) == _get_resized_resolution(img_resolution, BG_RESOLUTION)

    assert (920, 1080) == _get_resized_resolution((409, 480), (1920, 1080))
예제 #3
0
def test_shorter_width_longer_height():
    img_resolution = (50, 150)
    assert (33, 100) == _get_resized_resolution(img_resolution, BG_RESOLUTION)
예제 #4
0
def test_same_width_longer_height():
    img_resolution = (100, 150)
    assert (67, 100) == _get_resized_resolution(img_resolution, BG_RESOLUTION)
예제 #5
0
def test_same_width_shorter_height():
    img_resolution = (100, 50)
    assert (100, 50) == _get_resized_resolution(img_resolution, BG_RESOLUTION)