from PIL import Image

def create_image_with_dots(width, height, output_file="output1.jpg"):
    # Create a new white image
    image = Image.new("RGB", (width, height), "blue")
    
    # Save the image
    image.save(output_file, "JPEG")
    print(f"Image saved as {output_file}")


create_image_with_dots(1280, 760)