“Python Pillow converte JPG em PNG” Respostas de código

Python Pillow converte JPG em PNG

from PIL import Image

im1 = Image.open(r'C:\Users\Ron\Desktop\Test\autumn.jpg')
im1.save(r'C:\Users\Ron\Desktop\Test\new_autumn.png')
Proud Polecat

Python Pillow converte JPG em PNG

from PIL import Image

im1 = Image.open(r'path where the JPG is stored\file name.jpg')
im1.save(r'path where the PNG will be stored\new file name.png')
Proud Polecat

Respostas semelhantes a “Python Pillow converte JPG em PNG”

Perguntas semelhantes a “Python Pillow converte JPG em PNG”

Mais respostas relacionadas para “Python Pillow converte JPG em PNG” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código