Serverless Image Handler | 🚧 Feature request | 🐛 Bug Report | ❓ General Question
Note: If you want to use the solution without building from source, navigate to Solution Landing Page.
- Solution Overview
- Architecture Diagram
- AWS CDK and Solutions Constructs
- Customizing the Solution
- Collection of operational metrics
- External Contributors
- License
- RIA Play
- CloudFront and S3 Buckets
- Demos
The Serverless Image Handler solution helps to embed images on websites and mobile applications to drive user engagement. It uses Sharp to provide high-speed image processing without sacrificing image quality. To minimize costs of image optimization, manipulation, and processing, this solution automates version control and provides flexible storage and compute options for file reprocessing.
This solution automatically deploys and configures a serverless architecture optimized for dynamic image manipulation. Images can be rendered and returned spontaneously. For example, an image can be resized based on different screen sizes by adding code on a website that leverages this solution to resize the image before being sent to the screen using the image. It uses Amazon CloudFront for global content delivery and Amazon Simple Storage Service (Amazon S3) for reliable and durable cloud storage.
For more information and a detailed deployment guide, visit the Serverless Image Handler solution page.
The AWS CloudFormation template deploys an Amazon CloudFront distribution, Amazon API Gateway REST API, and an AWS Lambda function. Amazon CloudFront provides a caching layer to reduce the cost of image processing and the latency of subsequent image delivery. The Amazon API Gateway provides endpoint resources and triggers the AWS Lambda function. The AWS Lambda function retrieves the image from the customer's Amazon Simple Storage Service (Amazon S3) bucket and uses Sharp to return a modified version of the image to the API Gateway. Additionally, the solution generates a CloudFront domain name that provides cached access to the image handler API.
AWS Cloud Development Kit (AWS CDK) and AWS Solutions Constructs make it easier to consistently create well-architected infrastructure applications. All AWS Solutions Constructs are reviewed by AWS and use best practices established by the AWS Well-Architected Framework. This solution uses the following AWS Solutions Constructs:
In addition to the AWS Solutions Constructs, the solution uses AWS CDK directly to create infrastructure resources.
- AWS Command Line Interface
- Node.js 14.x or later
git clone https://github.com/aws-solutions/serverless-image-handler.git
cd serverless-image-handler
export MAIN_DIRECTORY=$PWDexport REGION=aws-region-code # the AWS region to launch the solution (e.g. us-east-1)
export BUCKET_PREFIX=my-bucket-name # the bucket prefix, randomized name recommended
export BUCKET_NAME=$BUCKET_PREFIX-$REGION # the bucket name where customized code will reside
export SOLUTION_NAME=my-solution-name # the solution name
export VERSION=my-version # version number for the customized codeAfter making changes, run unit tests to make sure added customization passes the tests:
cd $MAIN_DIRECTORY/deployment
chmod +x run-unit-tests.sh
./run-unit-tests.shcd $MAIN_DIRECTORY/deployment
chmod +x build-s3-dist.sh
./build-s3-dist.sh $BUCKET_PREFIX $SOLUTION_NAME $VERSION- Deploy the distributable to the Amazon S3 bucket in your account. Make sure you are uploading the files in
deployment/global-s3-assetsanddeployment/regional-s3-assetsto$BUCKET_NAME/$SOLUTION_NAME/$VERSION. - Get the link of the solution template uploaded to your Amazon S3 bucket.
- Deploy the solution to your account by launching a new AWS CloudFormation stack using the link of the solution template in Amazon S3.
This solution collects anonymous operational metrics to help AWS improve the quality and features of the solution. For more information, including how to disable this capability, please see the implementation guide.
- @leviwilson for #117
- @rpong for #130
- @harriswong for #138
- @ganey for #139
- @browniebroke for #151, #152
- @john-shaffer for #158
- @toredash for #174, #195
- @lith-imad for #194
- @pch for #227
- @atrope for #201, #202
- @bretto36 for #182
- @makoncline for #255
- @frankenbubble for #302
- @guidev for #309
- @njtmead for #276
Copyright 2019-2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
In your front-end application, you can access both the original and modified images by creating an image request object, stringifying and encoding that object, and appending it to the path of the Amazon CloudFront URL as shown below
https://distributionName.cloudfront.net/base64encodedrequest
For the time being only the "resize" functionality will be used. When required this part will be updated explaining how to add additional functionality.
Resize image to width, height or width x height.
When both a width and height are provided, the possible methods by which the image should fit these are:
cover: (default) Preserving aspect ratio, ensure the image covers both provided dimensions by cropping/clipping to fit.contain: Preserving aspect ratio, contain within both provided dimensions using "letterboxing" where necessary.fill: Ignore the aspect ratio of the input and stretch to both provided dimensions.inside: Preserving aspect ratio, resize the image to be as large as possible while ensuring its dimensions are less than or equal to both those specified.outside: Preserving aspect ratio, resize the image to be as small as possible while ensuring its dimensions are greater than or equal to both those specified.
Resize the image https://d1sw7x4s6hs80l.cloudfront.net/13179/colourful-web-theme-landscape.jpeg, which demensions are 3840 x 2160 pixels, to an image with a width 1280 pixels while maintaining the original image aspect ratio.
- Get the corresponding S3 Bucket and CloudFront destination
- Get the bucket key
- Create image request object
- Stringify the request object
- Base64 encode the request object
- Create final URL
1: Get the corresponding S3 Bucket
CloudFront and S3 Buckets and you should come up with the following results:
- S3 Bucket:
riaplay-sgp-dev-source-183pz60thvwzz - CF Destination:
d2f1wwz01txa4c.cloudfront.net
2: Get the bucket key
The bucket key can be found by removing the CloudFront URL from the original image URL:
- Bucket key:
13179/colourful-web-theme-landscape.jpeg
3: Create image request object
{
"bucket": "riaplay-sgp-dev-source-183pz60thvwzz",
"key": "13179/colourful-web-theme-landscape.jpeg",
"edits": {
"resize": {
"width": 1280,
"fit": "inside"
}
}
}4: Stringify the request object
Speaks for itself. In JS would be something like:
const str = JSON.stringfy(obj);5: Base64 encode the request object
Speaks for itself. In JS would be sometimg like:
const enc = Buffer.from(str).toString("base64");6: Create final URL
"https://d2f1wwz01txa4c.cloudfront.net/" + enc;You should have ended up with the following URL:
https://d2f1wwz01txa4c.cloudfront.net/eyJidWNrZXQiOiJyaWFwbGF5LXNncC1kZXYtc291cmNlLTE4M3B6NjB0aHZ3enoiLCJrZXkiOiIxMzE3OS9jb2xvdXJmdWwtd2ViLXRoZW1lLWxhbmRzY2FwZS5qcGVnIiwiZWRpdHMiOnsicmVzaXplIjp7IndpZHRoIjoxMjgwLCJmaXQiOiJpbnNpZGUifX19
| Server | CF original | S3 Bucket | CF destination |
|---|---|---|---|
| SGP 1 | d1sw7x4s6hs80l.cloudfront.net | riaplay-sgp-dev-source-183pz60thvwzz | d2f1wwz01txa4c.cloudfront.net |
| SGP 2 | d59ojwbx1ykkx.cloudfront.net | riaplay-sgp-dev-destination-sjjg2fpbizgt | d2f1wwz01txa4c.cloudfront.net |
| NLD 1 | d21kma3khzpbxk.cloudfront.net | riaplay-nld-dev-source-mi323donbs9w | d7w9sfc6u6t4y.cloudfront.net |
| NLD 2 | d3uqojbudg8lqy.cloudfront.net | riaplay-nld-dev-destination-5d06nnz4j199 | d7w9sfc6u6t4y.cloudfront.net |
| Server | CF original | S3 Bucket | CF destination |
|---|---|---|---|
| SGP 1 | d1wafvy2q0b2ef.cloudfront.net | riaplay-sgp-com-source-1tj11n4e0bg91 | d2cwfvuv00cfkj.cloudfront.net |
| SGP 2 | d3ho6dhi8vzvrs.cloudfront.net | riaplay-sgp-com-destination-1dckbg42zgae1 | d2cwfvuv00cfkj.cloudfront.net |
| NLD 1 | d34rplw5447v2z.cloudfront.net | riaplay-nld-com-source-1712hclnhtuzp | d2z31p8komhuen.cloudfront.net |
| NLD 2 | d26vdn6672kasa.cloudfront.net | riaplay-nld-com-destination-17frsh1qu6nrz | d2z31p8komhuen.cloudfront.net |
- COM SGP: https://dm4bxe8ftjo52.cloudfront.net
- COM NLD: https://d3mc2e4qytm89l.cloudfront.net
- DEV SGP: https://d158gu6aqh87y9.cloudfront.net
- DEV NLD:
