''' Purpose: display a blank image of appropriate size ''' import random from PIL import Image from image_support import get_blank_image, show # specify background color RGB_alice_blue = ( 240, 248, 255 ) # get desired width and height reply = input( "Enter width and height of interest: " ) w, h = reply.split() w, h = int( w ), int( h ) # specify image dimension size = ( w, h ) # get appropriately sized and colored image img = get_blank_image( size, RGB_alice_blue ) # show image show( img )