File size: 171 Bytes
d1b3326 |
1 2 3 4 5 6 7 |
from PIL import Image
# Create a new image with the specified dimensions
img = Image.new('RGB', (1525, 1526), color='white')
# Save the image
img.save('white_image.png') |
d1b3326 |
1 2 3 4 5 6 7 |
from PIL import Image
# Create a new image with the specified dimensions
img = Image.new('RGB', (1525, 1526), color='white')
# Save the image
img.save('white_image.png') |