Files
image_shenanigans/python/image_preparing.py
T
2026-08-23 21:35:41 +02:00

10 lines
212 B
Python

from PIL import Image
def fix_image_resolution(image_path, size=(0,0)):
if image_path == None or size == (0,0):
return None
with Image.open(image_path) as image:
return image.convert("RGB").resize(size)