from PIL import Image img = Image.open('image.png') rgb_img = img.convert('RGB') rgb_img.save('image.jpg')