I have a large folder of BMP files and I want to write a script that will loop through all the files in the folder and convert all BMP files into jpeg. I want it to continuously run as it will be used on a production line where new BMP images will be uploaded regularly.
Advertisement
Answer
You can simply use Pillow library. Use os.listdir to get a list of all the images to convert, then open each image with Pillow and save it as .png.
JavaScript
x
9
1
from PIL import Image
2
import os
3
4
path = "/image_folder/"
5
images= os.listdir(path)
6
for img in images:
7
Image.open(img).save(os.path.join(path+ str(img).replace(".bmp",".png") + '.png'))
8
os.remove(os.path.join(path + img))
9