画像をリサイズするコードサンプルです。
Python
画像をリサイズする、Pythonのコードサンプルです。
Pillow
import glob
import os
import tqdm
from PIL import Image
WIDTH = 1920
HEIGHT = 1080
os.makedirs("./100.resized", exist_ok=True)
files = glob.glob("./90.created/**.png")
for file in tqdm.tqdm(files):
img = Image.open(file)
img_resized = img.resize((WIDTH, HEIGHT), Image.LANCZOS)
img_resized.save(file.replace("90.created", "100.resized"))
メモ
- 配列・リストなどをtqdmに渡してあげるだけで、ログに進捗が表示されます。