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