mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-24 04:21:08 +00:00
657ce07b97
* Added Readme.md Gave a description of the project * Added Image_Compressor Added image compressor script and a sample image to compress the image file to a reduced size. * Updated README.md Added my name in Contributors list.
12 lines
286 B
Python
12 lines
286 B
Python
import PIL
|
|
from PIL import Image
|
|
from tkinter.filedialog import *
|
|
|
|
file_path=askopenfilenames()
|
|
img = PIL.Image.open(file_path)
|
|
myHeight,myWidth = img.size
|
|
|
|
img=img.resize((myHeight,myWidth),PIL.Image.ANTILIAS)
|
|
save_path=asksaveasfile()
|
|
|
|
img.save(save_path+"_compressed.JPG") |