Created
October 23, 2025 10:08
-
-
Save fatso83/00e35b26aaf8494040c62688d5c93cc0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from PIL import Image | |
| # Create a 1x1 pixel image | |
| # img = Image.new('1', (5, 5), 1) # '1' for 1-bit pixels, (1, 1) is the size, and 1 is the color (white) | |
| img = Image.new('1', (5, 5), 0) # '1' for 1-bit pixels, (1, 1) is the size, and 1 is the color (white) | |
| # Save the image with maximum compression | |
| img.save('minimal.png', 'PNG', optimize=True, compression_level=9) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment