python convert jpg to png code example
Example 1: python pillow convert jpg to png
from PIL import Image
im1 = Image.open(r'C:\Users\Ron\Desktop\Test\autumn.jpg')
im1.save(r'C:\Users\Ron\Desktop\Test\new_autumn.png')
Example 2: python convert png to jpg
from PIL import Image
img = Image.open('image.png')
rgb_img = img.convert('RGB')
rgb_img.save('image.jpg')
Example 3: python pillow convert jpg to png
from PIL import Image
im1 = Image.open(r'path where the JPG is stored\file name.jpg')
im1.save(r'path where the PNG will be stored\new file name.png')