[파이썬] jpg to bmp Converting
jpg 이미지 파일을 bmp형식으로 바꾸어야 할 상황이 생겨 코딩을 하게 되었다. 알면 매우 간단하다! PIL패키지의 Image모듈을 사용하면 된다. 일단 코드는 다음과 같다. 매우 간결하기에 따로 클래스나 함수는 주지 않았다. import glob from PIL import Image import os from tqdm import tqdm src_path = "./jpg_images" # jpg images path dst_path = "./bmp_images/" # bmp images path if not os.path.isdir(dst_path): # make dst dir if it's not existed os.mkdir(dst_path) for jpg_path in tqdm(list(set..
2021.06.09