Skip to content

Instantly share code, notes, and snippets.

@kyl191
Created April 26, 2012 13:47
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save kyl191/2499730 to your computer and use it in GitHub Desktop.
Image Blender
# Take r, g and b channels from separate images. Python randomises the list for extra fun.
from PIL import Image
import os, math, sys, random
os.chdir(sys.argv[1])
fileList = os.listdir(".")
random.shuffle(fileList)
(width, height) = Image.open(fileList[0]).size
nPhotos = len(fileList)
dst = Image.new("RGB", (width, height))
fileNum = 0
rkeep, g, b = Image.open(fileList[fileNum]).split()
fileNum = fileNum + 1
r, gkeep, b = Image.open(fileList[fileNum]).split()
fileNum = fileNum + 1
r, g, bkeep = Image.open(fileList[fileNum]).split()
Image.merge("RGB", (rkeep, gkeep, bkeep)).save("testbgr.jpg", "JPEG")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment