Anonymous Quiz
10%
Translator
37%
Compiler
36%
Assembler
17%
Interpreter
Who is the Father of Computer science
Anonymous Quiz
72%
Charles babbage
11%
Ada lovelace
16%
Alan Turing
from PIL import Image
import stepic
#Encryption
im= Image.open('PATH OF IMAGE')
im1 = stepic.encode(im, b'Hello Python')
im1.save('PATH OF ENCRYPTED IMAGE')
im1 = Image.open('PATH OF ENCRYPTED IMAGE')
im1.show()
# Decryption
im2 = Image.open('PATH OF ENCRYPTED IMAGE')
Image = stepic.decode(im2)
print(Image)
import stepic
#Encryption
im= Image.open('PATH OF IMAGE')
im1 = stepic.encode(im, b'Hello Python')
im1.save('PATH OF ENCRYPTED IMAGE')
im1 = Image.open('PATH OF ENCRYPTED IMAGE')
im1.show()
# Decryption
im2 = Image.open('PATH OF ENCRYPTED IMAGE')
Image = stepic.decode(im2)
print(Image)
👍1