Created
July 19, 2012 06:27
-
-
Save nojvek/3141140 to your computer and use it in GitHub Desktop.
Trim transparency of all PNG files in a folder
This file contains 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
import Image | |
import sys | |
import glob | |
# Trim all png images with alpha in a folder | |
# Usage "python PNGAlphaTrim.py ../someFolder" | |
try: | |
folderName = sys.argv[1] | |
except : | |
print "Usage: python PNGPNGAlphaTrim.py ../someFolder" | |
sys.exit(1) | |
filePaths = glob.glob(folderName + "/*.png") #search for all png images in the folder | |
for filePath in filePaths: | |
image=Image.open(filePath) | |
image.load() | |
imageSize = image.size | |
imageBox = image.getbbox() | |
imageComponents = image.split() | |
if len(imageComponents) < 4: continue #don't process images without alpha | |
rgbImage = Image.new("RGB", imageSize, (0,0,0)) | |
rgbImage.paste(image, mask=imageComponents[3]) | |
croppedBox = rgbImage.getbbox() | |
if imageBox != croppedBox: | |
cropped=image.crop(croppedBox) | |
print filePath, "Size:", imageSize, "New Size:",croppedBox | |
cropped.save(filePath) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment