Skip to content

Commit b7b37ac

Browse files
committed
FINAL FINAL changes
1 parent 785d43f commit b7b37ac

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#### <center>Hide any type of files inside a image of your choice</center>
1+
#### <p align="center">Hide any type of files inside a image of your choice</p>
22

33
<p align="center">
44
<a href="LICENSE">
@@ -18,6 +18,8 @@
1818
- [Introduction](#introduction)
1919
- [Installation](#installation)
2020
- [Usage](#usage)
21+
- [License](#license)
22+
- [Contributing](#contributing)
2123

2224
# Introduction
2325

@@ -47,6 +49,7 @@ python vangonography.py
4749

4850
# License
4951

52+
MIT © Van Gonography
5053
[MIT](LICENSE)
5154

5255
# Contributing

requirements.txt

38 Bytes
Binary file not shown.

src/VanGonography.py

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
from PIL import Image
77
from tkinter import Tk, filedialog
8+
from colorama import Fore, init
9+
810
from utils import *
911

1012
SINGLE_RGB_BIT_SIZE = 8 # Each RGB value is composed of 3 colors, each color is composed of 8 bits
@@ -370,6 +372,8 @@ def differentiate_image(source, cover, output_directory: str = None) -> None:
370372

371373
def main():
372374

375+
init(autoreset=True)
376+
373377
os.system('cls' if os.name == 'nt' else 'clear')
374378
print(
375379
"""
@@ -384,11 +388,14 @@ def main():
384388
`--`--' `--` `--`./ `--``--`------' `--`--'' `--`./ `--` `--`--'' `--`------' `--`-`--`--' `--` `--`---' `--`-' `-`--` `--`-` `--`--' `-----`---``=` ``--'--' `=` ``--'--'
385389
"""
386390
)
391+
print()
392+
print(Fore.YELLOW + "Version 1.0.0")
387393
print("Welcome to VanGonography! Please select an option:")
388-
print("[1] Hide a file in an image")
389-
print("[2] Reveal a hidden file in an image")
390-
print("[3] Show the difference between two images")
391-
print("[4] Exit")
394+
print()
395+
print(Fore.LIGHTRED_EX + "[1] " + Fore.WHITE + "Hide a file in an image")
396+
print(Fore.LIGHTRED_EX + "[2] " + Fore.WHITE + "Reveal a hidden file in an image")
397+
print(Fore.LIGHTRED_EX + "[3] " + Fore.WHITE + "Show the difference between two images")
398+
print(Fore.LIGHTRED_EX + "[4] " + Fore.WHITE + "Exit")
392399
print()
393400

394401
while True:
-9.34 KB
Binary file not shown.
-44.9 KB
Binary file not shown.

src/tests/download.jpg

-5.34 KB
Binary file not shown.

0 commit comments

Comments
 (0)