Skip to content

Instantly share code, notes, and snippets.

@thomastweets
thomastweets / PNGWhiteTrim.py
Last active June 23, 2025 15:42
Python script to trim all png images with white background in a folder
import Image
import sys
import glob
import ImageOps
# Trim all png images with white background in a folder
# Usage "python PNGWhiteTrim.py ../someFolder"
try:
folderName = sys.argv[1]