forked from BhargavGamit/ImageManipulationAlgorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBitwise Blending.py
77 lines (69 loc) · 2.12 KB
/
Bitwise Blending.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Author Bhargav K
# Email [email protected]
# Bitwise Blending
# AND OR XOR
# AND color=firstimagecolor & secondimagecolor
# OR color=firstimagecolor | secondimagecolor
# XOR color=firstimagecolor ^ secondimagecolor
from PIL import Image
i = Image.open("input1.png")
j = Image.open("input2.png")
#store pixels of first image
pixels_first = i.load()
width_first, height_first = i.size
k=Image.new(i.mode,i.size)
#store pixels of second image
pixels_second = j.load()
width_second,height_second = j.size
blue=0
green=0
red=0
print "Choose Bitwise blendtypes as follows"
print "1 AND \n2 OR \n3 XOR\n"
redblend=input("Choose red blend type: ")
greenblend=input("Choose green blend type: ")
blueblend=input("Choose blue blend type: ")
#cpixel[0] contains red value cpixel[1] contains green value
#cpixel[2] contains blue value cpixel[3] contains alpha value
for image_width_iterator in range(width_first):
for image_height_iterator in range(height_first):
cpixel = pixels_first[image_width_iterator, image_height_iterator]
dpixel = pixels_second[image_width_iterator,image_height_iterator]
if(redblend == 1):
red=cpixel[0]&dpixel[0]
elif(redblend == 2):
red=cpixel[0]|dpixel[0]
elif(redblend==3):
red=cpixel[0]^dpixel[0]
else:
red=0
if(greenblend == 1):
green=cpixel[1]&dpixel[1]
elif(greenblend == 2):
green=cpixel[1]|dpixel[1]
elif(greenblend==3):
green=cpixel[1]^dpixel[1]
else:
blue=0
if(blueblend == 1):
blue=cpixel[2]&dpixel[2]
elif(blueblend == 2):
blue=cpixel[2]|dpixel[2]
elif(blueblend==3):
blue=cpixel[2]^dpixel[2]
else:
blue=0
if(red<0):
red=0
if(red>255):
red=255
if(green<0):
green=0
if(green>255):
green=255
if(blue<0):
blue=0
if(blue>255):
blue=255
k.putpixel((image_width_iterator,image_height_iterator),(red,green,blue))
k.save('output.png')