4 lines
103 B
Python
4 lines
103 B
Python
from PIL import Image
|
|
|
|
im = Image.open("naruto_first.png").convert("RGB")
|
|
im.save("naruto.jpg", "jpeg") |