Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Meismaxandmaxisme
/
Testing
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d6beae9
Testing
/
image_ops.py
Meismaxandmaxisme
Upload 8 files
d6beae9
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
262 Bytes
from
PIL
import
Image
def
resize_pil_image
(
pil_image: Image,
image_width,
image_height,
):
return
pil_image.convert(
"RGB"
).resize(
(
image_width,
image_height,
),
Image.Resampling.LANCZOS,
)