Answers for "python select an image file and save it to a new folder"

1

convert files from jpg to png and save in a new directory python

from PIL import Image
import os

directory = r'D:PATH'
c=1
for filename in os.listdir(directory):
    if filename.endswith(".jpg"):
        im = Image.open(filename)
        name='img'+str(c)+'.png'
        rgb_im = im.convert('RGB')
        rgb_im.save(name)
        c+=1
        print(os.path.join(directory, filename))
        continue
    else:
        continue
Posted by: Guest on August-21-2020

Code answers related to "python select an image file and save it to a new folder"

Python Answers by Framework

Browse Popular Code Answers by Language