Skip to content

Instantly share code, notes, and snippets.

View thomastweets's full-sized avatar

Thomas Emmerling thomastweets

View GitHub Profile
View keybase.md

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@thomastweets
thomastweets / PNGWhiteTrim.py
Last active October 18, 2023 12:47
Python script to trim all png images with white background in a folder
View PNGWhiteTrim.py
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]