Skip to content

Instantly share code, notes, and snippets.

@fatso83
Created October 23, 2025 10:08
Show Gist options
  • Save fatso83/00e35b26aaf8494040c62688d5c93cc0 to your computer and use it in GitHub Desktop.
Save fatso83/00e35b26aaf8494040c62688d5c93cc0 to your computer and use it in GitHub Desktop.
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