JPGtoPNG.py 103 B

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