FastAPI_lcm_docker / image_ops.py
michaelj's picture
Upload folder using huggingface_hub
e23d4ed
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,
)