forked from CSEdgeOfficial/Python-Programming-Internship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTask4
53 lines (43 loc) · 1.86 KB
/
Task4
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
45
46
47
48
49
50
51
52
53
from PIL import Image
import os
def get_size_format(b, factor=1024, suffix="B"):
"""
Scale bytes to its proper byte format.
e.g: 1253656 => '1.20MB', 1253656678 => '1.17GB'
"""
for unit in ["", "K", "M", "G", "T", "P", "E", "Z"]:
if b < factor:
return f"{b:.2f}{unit}{suffix}"
b /= factor
return f"{b:.2f}Y{suffix}"
def compress_img(image_name, new_size_ratio=0.9, quality=90, width=None, height=None, to_jpg=True):
# Load the image into memory
img = Image.open(image_name)
# Print the original image shape
print("[*] Image shape:", img.size)
# Get the original image size in bytes
image_size = os.path.getsize(image_name)
print("[*] Size before compression:", get_size_format(image_size))
if new_size_ratio < 1.0:
# If resizing ratio is below 1.0, multiply width & height with this ratio to reduce image size
img = img.resize((int(img.size[0] * new_size_ratio), int(img.size[1] * new_size_ratio)), Image.ANTIALIAS)
elif width and height:
# If width and height are set, resize with them instead
img = img.resize((width, height), Image.ANTIALIAS)
# Split the filename and extension
filename, ext = os.path.splitext(image_name)
# Make a new filename appending "_compressed" to the original file name
if to_jpg:
# Change the extension to JPEG
new_filename = f"{filename}_compressed.jpg"
else:
# Retain the same extension of the original image
new_filename = f"{filename}_compressed{ext}"
# Save the compressed image
img.save(new_filename, optimize=True, quality=quality)
# Print the new image shape
print("[+] New Image shape:", img.size)
print(f"[*] Compressed image saved as: {new_filename}")
# Example usage:
Input=input()
compress_img(Input, new_size_ratio=0.8, quality=80, width=800, height=600)