from PIL import Image, ImageDraw

def create_image_with_dots(width, height, output_file="output2.jpg"):
    # Create a new white image
    image = Image.new("RGB", (width, height), "blue")
    
     # Create a drawing object
    draw = ImageDraw.Draw(image)

    draw.ellipse([(100,200),(180,240)], fill="black")

    # Save the image
    image.save(output_file, "JPEG")
    print(f"Image saved as {output_file}")


create_image_with_dots(1280, 760)