Skip to content

Commit e530965

Browse files
committed
Image compressor
1 parent 030e159 commit e530965

File tree

3 files changed

+68
-0
lines changed

3 files changed

+68
-0
lines changed

Image_compressor/README.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!--Please do not remove this part-->
2+
![Star Badge](https://img.shields.io/static/v1?label=%F0%9F%8C%9F&message=If%20Useful&style=style=flat&color=BC4E99)
3+
![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)
4+
5+
# Image Compressor
6+
7+
## 🛠️ Description
8+
<!--Remove the below lines and add yours -->
9+
The image resizer takes in an image and reduces it's disk size according to the quality you choose, the compressed image is saved in the folder of the orignal image
10+
11+
12+
13+
## ⚙️ Languages or Frameworks Used
14+
<!--Remove the below lines and add yours -->
15+
Modules required to be able to use the script successfully
16+
`pillow`, `os`, `easygui`
17+
18+
These modules are listed in `requirements.txt` and can be installed by running the following command `pip install requirements.txt`
19+
20+
## 🌟 How to run
21+
<!--Remove the below lines and add yours -->
22+
:Simply run the script
23+
24+
25+
## 🤖 Author
26+
<!--Remove the below lines and add yours -->
27+
If you have any doubts or tips feel free to ping me on discord
28+
dumb_potato#1734
29+

Image_compressor/image_compressor.py

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
from PIL import Image
2+
import os
3+
import easygui
4+
from easygui import *
5+
6+
def resizer():
7+
print("Please select the image you want to compress")
8+
image_file = easygui.fileopenbox()
9+
filepath = os.path.join(os.getcwd(), image_file)
10+
11+
filename, filextension = os.path.splitext(image_file)
12+
img = Image.open(filepath)
13+
text = "Enter quality on a scale of 10 to 100 (default value is 50)"
14+
15+
if filextension == ".jpeg" or filextension == ".jpg":
16+
qual = integerbox(text,50,lowerbound=10,upperbound=100)
17+
img.save(
18+
filename + "_compressed" + ".jpeg",
19+
"JPEG",
20+
optimize= True,
21+
quality = qual
22+
)
23+
msgbox("Your compressed image has been saved in the orignal image folder")
24+
25+
elif filextension == ".png":
26+
img.convert("P", palette=Image.ADAPTIVE,colors=256)
27+
img.save(filename+"_compressed"+".png",optimize=True,quality = 10)
28+
msgbox("Please note that due to the file format being png it may not get compressed much")
29+
msgbox("Your compressed image has been saved in the orignal image folder")
30+
31+
else:
32+
print("Invalid filetype")
33+
34+
return
35+
36+
resizer()

Image_compressor/requirements.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
os
2+
pillow
3+
easygui

0 commit comments

Comments
 (0)