diff --git a/index.html b/index.html
index d0b7794..952ad61 100644
--- a/index.html
+++ b/index.html
@@ -1,131 +1,132 @@
-
-
-Exif Images Edition
-
+ @keyframes color-change {
+ 0% {
+ color: #007bff;
+ }
+ 100% {
+ color: #ff6347;
+ }
+ }
+ .floating-image {
+ position: fixed;
+ bottom: 20px;
+ right: 20px;
+ width: 100px;
+ height: 100px;
+ background-color: #f8f8f8;
+ border-radius: 50%;
+ box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
+ overflow: hidden;
+ }
+ .floating-image img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ }
+ @media (max-width: 600px) {
+ .container {
+ padding: 15px;
+ }
+ .logo {
+ max-height: 150px;
+ }
+ .animated-text {
+ font-size: 20px;
+ }
+ }
+
@@ -138,48 +139,42 @@
Features
-
-
- - Extract exif data of images (jpg, jpeg, png).
- - Clear exif data from images.
- - Save data in a text file.
-
+
+ - Extract exif data of images (jpg, jpeg, png).
+ - Clear exif data from images.
+ - Save data in a text file.
+
Supported Formats
-
-
- - Images: PNG, JPG, JPEG, GIF, BMP, TIFF
- - Videos: MP4, MKV, AVI, MOV
- - Audio: MP3 (limited support, additional library may be required)
-
-
+
+ - Images: PNG, JPG, JPEG, GIF, BMP, TIFF
+ - Videos: MP4, MKV, AVI, MOV
+ - Audio: MP3 (limited support, additional library may be required)
+
Installation and Usage Instructions
-
-
- - Add .jpg to subfolder ./images from where the script is stored.
- - Note: Most social media sites strip exif data from uploaded photos.
-
+
+ - Add .jpg to subfolder ./images from where the script is stored.
+ - Note: Most social media sites strip exif data from uploaded photos.
+
Prerequisites
-
- Install Python3
-
- - Debian, Ubuntu, Etc:
sudo apt-get install python3
- - Fedora, Oracle, Red Hat, etc:
su -c "yum install python"
- - Windows: Python for Windows
-
-
- Install Pillow (Pillow will not work if you have PIL installed):
- python3 -m pip install --upgrade pip
+ Install Python3
+
+ - Debian, Ubuntu, Etc:
sudo apt-get install python3
+ - Fedora, Oracle, Red Hat, etc:
su -c "yum install python"
+ - Windows: Python for Windows
+
+
+ Install Pillow (Pillow will not work if you have PIL installed):
+ python3 -m pip install --upgrade pip
python3 -m pip install --upgrade Pillow
pip install Pillow moviepy
pip install eyed3
-
-
+
Installation
@@ -207,7 +202,8 @@ πΈπ₯π Direct Use
Unearth the metadata magic with style!
Copy and paste this:
-
+
+
git clone https://github.com/AryanVBW/Exif.git
cd Exif
@@ -236,4 +232,17 @@ Use these commands to print jpg output directly on terminal or PowerShell:
+
+
+