-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathColourShadingAlgo.py
30 lines (29 loc) · 1 KB
/
ColourShadingAlgo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Author Sri Vennela Vaishnapu
# Email [email protected]
# Colour Shading algorithm
from PIL import Image
import random
i = Image.open("input.png")
blueShade = input("enter the ahdingfactor for blue range:0 to 1")
redShade = input("enter the ahdingfactor for red range:0 to 1")
greenShade = input("enter the ahdingfactor for green range:0 to 1")
#pixel data is stored in pixels in form of two dimensional array
pixels = i.load()
width, height = i.size
j=Image.new(i.mode,i.size)
for x in range(width):
for y in range(height):
cpixel = pixels[x, y]
#cpixel[0] contains red value cpixel[1] contains green value
#cpixel[2] contains blue value cpixel[3] contains alpha value
blue = int(cpixel[0] * blueShade)
green = int(cpixel[1] * greenShade)
red = int(cpixel[2] * redShade)
if(blue < 0):
blue = 0
if(green < 0):
green = 0
if(red < 0):
red = 0
j.putpixel((x,y),(red,green,blue))
j.save('output.png')