Skip to content

Instantly share code, notes, and snippets.

View redjack001's full-sized avatar

redjack001 redjack001

  • W2E Technologies
View GitHub Profile
@redjack001
redjack001 / gradient.py
Created April 25, 2020 08:21
Create a gradient picture from python
from PIL import Image
#set the size of the new image
w = 500
h = 200
#start creating gradient
pixel_list = []
pixel_w = []