“Python Pil -Größenbild” Code-Antworten

Python Pil -Größenbild

from PIL import Image

# Image.open() can also open other image types
img = Image.open("some_random_image.jpg")
# WIDTH and HEIGHT are integers
resized_img = img.resize((WIDTH, HEIGHT))
resized_img.save("resized_image.jpg")
Evang

Ändern Sie die Bildauflösungskissen

size = 7016, 4961
im = Image.open("my_image.png")
im_resized = im.resize(size, Image.ANTIALIAS)
im_resized.save("my_image_resized.png", "PNG")
Hungry Hamerkop

Python -Kissen -Größen -Bild Bild

from PIL import Image
# set the base width of the result
basewidth = 300
img = Image.open('somepic.jpg')
# determining the height ratio
wpercent = (basewidth/float(img.size[0]))
hsize = int((float(img.size[1])*float(wpercent)))
# resize image and save
img = img.resize((basewidth,hsize), Image.ANTIALIAS)
img.save('sompic.jpg') 
Cute Cardinal

Pil -Größenbild

im = Image.open('image.jpg')  
im = im.resize((w, h)) 
Johan

Ähnliche Antworten wie “Python Pil -Größenbild”

Fragen ähnlich wie “Python Pil -Größenbild”

Weitere verwandte Antworten zu “Python Pil -Größenbild” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen