Gráficos, Python ContenidosCódigo en PythonImagen sin cambiar tamañoImagen cambiada de tamaño Código en Python PowerShell from PIL import Image img = Image.open('1.jpg') new_img = img.resize((256,256)) new_img.save('1-256x256.png','png') 1234 from PIL import Imageimg = Image.open('1.jpg')new_img = img.resize((256,256))new_img.save('1-256x256.png','png') Imagen sin cambiar tamaño Imagen cambiada de tamaño