-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBrightness.py
34 lines (30 loc) · 965 Bytes
/
Brightness.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
31
32
33
34
# Author Bhargav K
# Email [email protected]
# Brightness algorithm
# colour = GetPixelColour(x, y)
# newRed = Truncate(Red(colour) + brightness)
# newGreen = Truncate(Green(colour) + brightness)
# newBlue = Truncate(Blue(colour) + brightness)
# PutPixelColour(x, y) = RGB(newRed, newGreen, newBlue)
# Procedure Truncate(value)
# If value < 0 Then value = 0
# If value > 255 Then value = 255
# Return value
# EndProcedure
from PIL import Image
i = Image.open("input.png")
pixels = i.load()
width, height = i.size
j=Image.new(i.mode,i.size)
def Truncate(value):
if(value < 0):
value = 0
if(value > 255):
value = 255
return value
brightness=input("Enter value to increase brightness int value")
for x in range(width):
for y in range(height):
cpixel = pixels[x, y]
j.putpixel((x,y),(Truncate(cpixel[0] + brightness),Truncate(cpixel[1] + brightness),Truncate(cpixel[2] + brightness)))
j.save('output.png')