Links

Convert PNG Images To JPG

Tags: #jpg #png #to #image #images #convert
Author: Ahmed Mousa
Description: This notebook converts png images to jpg images.

Input

Import libraries

from PIL import Image

Setup Variables

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"

Model

Open image and converts to RGB colors

img_png = Image.open(file_path)
img_png = img_png.convert("RGB")
Replacing file name extensions
new_file_path = file_path.replace("png", "jpg")

Output

Save result as jpg file

img_png.save(new_file_path)