PNGtoJPG.py 104 B

1234
  1. from PIL import Image
  2. im = Image.open("naruto_first.png").convert("RGB")
  3. im.save("naruto.jpg", "jpeg")