forked from BhargavGamit/ImageManipulationAlgorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathColourInversionAlgo.py
27 lines (24 loc) · 912 Bytes
/
ColourInversionAlgo.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
# Author Sri Vennela Vaishnapu
# Email [email protected]
# Inversion algorithm
# colour = GetPixelColour(x, y)
# invertedRed = 255 - Red(colour)
# invertedGreen = 255 - Green(colour)
# invertedBlue = 255 - Blue(colour)
# PutPixelColour(x, y) = RGB(invertedRed, invertedGreen,invertedBlue)
from PIL import Image
i = Image.open("input.png")
#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
invertedRed = 255 - cpixel[0]
invertedGreen = 255 - cpixel[1]
invertedBlue = 255 - cpixel[2]
j.putpixel((x, y),(invertedRed, invertedGreen, invertedBlue))
j.save('output.png')