from PIL import Image

# Image size and color
width, height = 50, 50
background_color = (255, 255, 255)  # white

# Create a blank image (single frame)
blank_image = Image.new("RGB", (width, height), background_color)

# Save
blank_image.save('test.png')
