PyRunner / services /image_agent.py
Akoda35's picture
Create services/image_agent.py
768009c verified
Raw
History Blame Contribute Delete
198 Bytes
from PIL import Image
class ImageAgent:
def resize(self, path, output):
image = Image.open(path)
image.thumbnail((1024, 1024))
image.save(output)
return output