Template request | Bug report | Generate Data Product
Tags: #jpg #png #to #image #images #convert
Author: Ahmed Mousa
Description: This notebook converts png images to jpg images.
from PIL import Image
Make sure you put your file absolute path or put the file within this notebook directory.
file_path = "Put your file path here / Make sure it's withing this notebook dire"
img_png = Image.open(file_path)
img_png = img_png.convert("RGB")
Replacing file name extensions
new_file_path = file_path.replace("png", "jpg")
img_png.save(new_file_path)