“Ubah Ukuran Gambar Pyhton” Kode Jawaban

Ubah Ukuran Gambar Pyhton

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

Ubah Ukuran Gambar Pyhton

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

Jawaban yang mirip dengan “Ubah Ukuran Gambar Pyhton”

Pertanyaan yang mirip dengan “Ubah Ukuran Gambar Pyhton”

Lebih banyak jawaban terkait untuk “Ubah Ukuran Gambar Pyhton” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya