Skip to content

Instantly share code, notes, and snippets.

@koldunovn
koldunovn / PNGWhiteTrim.py
Created August 19, 2020 17:56 — forked from thomastweets/PNGWhiteTrim.py
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]