Skip to content

Instantly share code, notes, and snippets.

View Sansekai's full-sized avatar
😥

M Yusril Sansekai

😥
View GitHub Profile
@namieluss
namieluss / python-pillow-image-change-background.py
Created March 12, 2020 11:00
Replace a Color (RGB) from an Image using Python Pillow
from PIL import Image
img = Image.open("test_image.jpg")
img = img.convert("RGB")
datas = img.getdata()
new_image_data = []
for item in datas:
# change all white (also shades of whites) pixels to yellow