forked from BhargavGamit/ImageManipulationAlgorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMirror Images.py
32 lines (27 loc) · 904 Bytes
/
Mirror Images.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
# Author Kavya S, Bhargav K
# Email [email protected], [email protected]
# Mirroring Image
from PIL import Image
i = Image.open("input.jpg")
#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)
print "1 Mirror along X and Y axis"
print "2 Mirror along Y axis"
print "3 Mirror along X axis"
option=input('Enter your choice: ')
if option == 1:
widthmodifier=width-1
heightmodifier=height-1
elif option == 2:
widthmodifier=0
heightmodifier=height-1
else:
widthmodifier=width-1
heightmodifier=0
for image_width_iterator in range(width):
for image_height_iterator in range(height):
cpixel = pixels[image_width_iterator,image_height_iterator]
j.putpixel((abs(widthmodifier-image_width_iterator),abs(heightmodifier-image_height_iterator)),(cpixel))
j.save('output.png')