Giter Site home page Giter Site logo

xyzcocktail / lambda-resize-image Goto Github PK

View Code? Open in Web Editor NEW

This project forked from apoca/lambda-resize-image

0.0 0.0 0.0 1.59 MB

An AWS Lambda Function to resize images automatically with API Gateway and S3 for imagemagick tasks. When an image is called on AWS Api Gateway, this package will resize it and send it to the S3.

Home Page: https://github.com/apoca/lambda-resize-image

License: MIT License

JavaScript 100.00%

lambda-resize-image's Introduction

lambda-resize-image

Build Status Codacy Badge Maintainability npm version dependencies Status devDependencies Status npm

An AWS Lambda Function to resize images automatically with API Gateway and S3 for imagemagick tasks. When an image is called on AWS Api Gateway, this package will resize it and send it to the S3.

Contents

Requirements

  • Node.js - AWS Lambda supports versions of 10.20.1 or above (Recommended: 12.X).

New version 2.0

We've changed our approache to remove redirects from our responses. Then, we are returning a binary file base 64 image file.

Steps to version 2.0

You must have AWS CLI installed to execute a command from your console:

aws apigateway update-integration-response --rest-api-id <API_ID> --resource-id <RESOURCE_ID> --http-method GET --status-code 200 --patch-operations '[{"op" : "replace", "path" : "/contentHandling", "value" : "CONVERT_TO_BINARY"}]'

In API GW -> Settings -> Binary Media Types and add:

*/*

What is it?

It's AWS Lambda, which is a compute service that lets you run code without provisioning or managing servers.

Read more about AWS Lambda.

Description

The combination of API Gateway and Lambda is very powerful. It allows you to build some complex functionalities without maintaining any virtual machines yourself. Lambda can be hooked up to many other (AWS) Services including S3. That's why I decided to build an AWS Lambda Function to resize images automatically with API Gateway and S3 for imagemagick tasks. When an image is called on AWS S3 bucket (via API Gateway), this package will resize it and send it to the S3 before redirecting you to the new path of the image (aws bucket url or CDN).

Features

Instalation

First, add Serverless globally:

npm install -g serverless

Then, clone the repository into your local environment:

git clone https://github.com/apoca/lambda-resize-image
cd lambda-resize-image
npm install

Modify and set the .env.example to env.yml with your data. (You are supposed to have already configured your local variables).

AWS credentials

To run local development you also might need to configure you aws credentials, or you can set them to what I've shown below.

Deploy to Amazon AWS

You can also check if you have everything installed in the correct way:

$ serverless

To deploy from your environment to Amazon AWS, you must:

$ serverless deploy --stage dev or $ serverless deploy --stage prod for production configurations.

Then, serverless will package, validate and upload your stack to Amazon AWS. It will probably look like this:

Serverless: Packaging service...
Serverless: Uploading CloudFormation file to S3...
Serverless: Uploading artifacts...
Serverless: Uploading service .zip file to S3 (1.52 KB)...
Serverless: Validating template...
Serverless: Updating Stack...
Serverless: Checking Stack update progress...
..............
Serverless: Stack update finished...
Service Information
service: resizeS3Image
stage: development
region: eu-west-1
stack: resizeS3Image-development
api keys:
  None
endpoints:
  GET - https://<api_key_here>.execute-api.eu-west-1.amazonaws.com/dev/{key+}
functions:
  handler: resize-dev-image
Serverless: Removing old service artifacts from S3...

When upload to AWS Lambda, the project will bundle only needed files - no dev dependencies will be included.

Usage (image restrictions resize)

To restrict the dimensions, we put a const var in the handle.js:

const ALLOWED_DIMENSIONS = {
  width: 1800,
  height: 1800
};

You can also change the url endpoint https://<api_key_here>.execute-api.eu-west-1.amazonaws.com/dev/{key+} to another one more tiny and cachable (cloudfront), you can also configure in you Api Gateway (lambda service) a Custom Domain Name.

Example URL usage

https://<api_key_here>.execute-api.eu-west-1.amazonaws.com/dev/<KEY_S3_IMAGE_HERE>?width=<WIDTH>&height=<HEIGHT>

or with you own Custom Domain Names:

https://api.yourdomain.com/<KEY_S3_IMAGE_HERE>?width=<WIDTH>&height=<HEIGHT>

Example usage of lambda resize image

Environment variables

  • URL - AWS URL S3 bucket or your CDN url to the BUCKET. (not required in version 2.0)
  • BUCKET - AWS S3 bucket. (required)

Environment variables for serverless

  • AWS_ACCESS_KEY_ID - AWS key
  • AWS_SECRET_ACCESS_KEY - AWS Secret

Local development

  1. $ npm i -g serverless
  2. $ npm i
  3. $ brew install imagemagick
  4. $ serverless offline start

Note that you will need to be into the root repository. The last command (4.) will spin up an serverless-offline version of an API Gateway, that will simulate the real one. Once it is running, you can see all the requests on your command line.

Example request

http://localhost:3000<YOUR_KEYNAME_TO_IMAGE>?width=<WIDTH>&height=<HEIGHT>

Configuration Parameters

Parameter type description
width Integer Required. Will resize image via imagemagic resize.
height Integer Optional. Will resize image via imagemagic crop.

Feedback

We'd love to get feedback on how you're using lambda-resize-image and things we could add to make this tool better. Feel free to contact us at [email protected]

Contributing

If you'd like to contribute to the project, feel free to submit a PR. See more: CODE_OF_CONDUCT.md

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Author

  • Miguel Vieira - Initial work - apoca

See also the list of contributors who participated in this project.

lambda-resize-image's People

Contributors

apoca avatar dependabot[bot] avatar joelcalheiros avatar franciscomorais avatar codacy-badger avatar miguelangelorodrigues avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.