stackery / php-lambda-layer

PHP Runtime Layer for AWS Lambda
Other
321 stars 71 forks source link

gd, jpeg, png and webp? Maybe even ImageMagick? #46

Closed treii28 closed 5 years ago

treii28 commented 5 years ago

I was hoping to use PHP for generating thumbnails of images stored in s3 buckets. Why no support for any graphics tools?

txase commented 5 years ago

You can add extensions to your function, which I recommend doing by building the extensions using lambci and zipping them into a Lambda Layer. This is described at the bottom of the extensions section of the readme: https://github.com/stackery/php-lambda-layer#extensions.

Thanks!