This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from tqdm import tqdm | |
from PIL import Image | |
import os | |
from time import sleep | |
def Resize_image(size, image): | |
if os.path.isfile(image): | |
try: | |
im = Image.open(image) | |
im.thumbnail(size, Image.ANTIALIAS) | |
im.save("resize/" + str(image) + ".jpg") | |
except Exception as ex: | |
print(f"Error: {str(ex)} to {image}") | |
path = input("Enter Path to images : ") | |
size = input("Size Height , Width : ") | |
size = tuple(map(int, size.split(","))) | |
os.chdir(path) | |
list_images = os.listdir(path) | |
if "resize" not in list_images: | |
os.mkdir("resize") | |
for image in tqdm(list_images, desc="Resizing Images"): | |
Resize_image(size, image) | |
sleep(0.1) | |
print("Resizing Completed!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment