-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
44 lines (37 loc) · 1.2 KB
/
main.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
import PIL.Image
import io
def getJpegSize(fileName): #where f is a file opened with the function open()
with open(fileName, "rb") as f:
content = f.read()
return content.index(bytes.fromhex('FFD9'))+2 #extra 2 to account for ffD9, which is 2 bytes long
def coverData(fileName, data):
print("covering data")
with open(fileName, "ab") as f:
f.write(data)
f.close()
def extractData(fileName):
print("extracting data...")
with open(fileName, "rb") as f:
f.seek(getJpegSize(fileName))
return f.read()
def readImg(image):
img = PIL.Image.open(image)
byteArr = io.BytesIO()
img.save(byteArr, format="PNG")
return byteArr.getvalue()
def createImageFromData(data):
newImg = PIL.Image.open(io.BytesIO(data))
newImg.save("newImage.png")
def removeData(fileName):
with open(fileName, "ab") as f:
f.truncate(getJpegSize(fileName))
if __name__ == '__main__':
image = "fieldImage.jpeg"
image2 = "balloonsImage.png"
#coverData(image, b"test")
#extractData(image)
"""img = readImg(image2)
coverData(image, img)
createImageFromData(extractData(image))"""
removeData(image)
print(extractData(image))