mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-07-09 15:52:37 +03:00
8 lines
91 B
Python
8 lines
91 B
Python
#!/usr/bin/env python
|
|
|
|
from PIL import Image
|
|
|
|
im = Image.new('L', (999999, 999999), 0)
|
|
|
|
|