“Ubah Ukuran Gambar Dalam Python” Kode Jawaban

gambar ukuran 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

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 Dalam Python

from PIL import Image, ImageFilter  # Import classes from the library.

original_image = Image.open("file.ppm") # Load an image from the file system.
blurred_image = original_image.filter(ImageFilter.BLUR) # Blur the image.

# Display both images.
original_image.show() 
blurred_image.show()
Purple Team

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 Dalam Python”

Pertanyaan yang mirip dengan “Ubah Ukuran Gambar Dalam Python”

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

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya