“Python измените размер изображения” Ответ

Python измените размер изображения

from PIL import Image
image = Image.open("path/.../image.png")
image = image.resize((500,500),Image.ANTIALIAS)
image.save(fp="newimage.png")
Robin R

Python PIL RESER RESIZE IMACE

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

Pyhton Image Resize

from PIL import Image
from resizeimage import resizeimage

fd_img = open('test-image.jpeg', 'r')
img = Image.open(fd_img)
img = resizeimage.resize_cover(img, [200, 100])
img.save('test-image-cover.jpeg', img.format)
fd_img.close()
Funny Fish

Python Pillow Изменить размер изображения

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 Изменение размера изображения

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

Pyhton Image Resize

from PIL import Image

from resizeimage import resizeimage


with open('test-image.jpeg', 'r+b') as f:
    with Image.open(f) as image:
        cover = resizeimage.resize_cover(image, [200, 100])
        cover.save('test-image-cover.jpeg', image.format)
Funny Fish

Ответы похожие на “Python измените размер изображения”

Вопросы похожие на “Python измените размер изображения”

Больше похожих ответов на “Python измените размер изображения” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования