Skip to content

Latest commit

 

History

History
81 lines (61 loc) · 4.85 KB

README.md

File metadata and controls

81 lines (61 loc) · 4.85 KB

Sharp for AWS Lambda (with JPEG 2000 support)

AWS Lambda Layer providing sharp with JPEG 2000 and WebP support.

Forked and modified from sharp-heic-lambda-layer by Andreas Zoellner.

Prerequisites

Usage

npm run build
SAM_BUCKET=your-s3-bucket npm run deploy

The example can be deployed using the following commands

cd examples
sam build
sam deploy --guided

Lambda Layer

  • Add the lambda layer with ARN arn:aws:lambda:us-east-1:${AWS:AccountId}:layer:sharp-jp2:${LAYER_VERSION} to any lambda function (replace ${LAYER_VERSION} with the appropriate version and ${AWS:AccountId} if you're not using a layer from the same account as the function). You can also import the layer ARN using !ImportValue SharpJP2LayerArn.
  • Remove sharp from the dependencies in the function code (it will otherwise conflict with the one provided through the layer)
  • See example template for a complete sample template.

Environment Variables for build

Name Required Default Value Description
SAM_BUCKET yes Name of S3 Bucket to store layer
S3_PREFIX no sharp-jp2-lambda-layer Prefix within S3 Bucket to store layer
STACK_NAME no sharp-jp2-lambda-layer Name of CloudFormation stack
LAYER_NAME no sharp-jp2 Name of layer
AWS_REGION no us-east-1 AWS Region to deploy to
ORGANIZATION_ID no none ID of Organization to grant access to layer
PRINCIPAL no account Principal to grant access to layer

For details on ORGANIZATION_ID and PRINCIPAL please see the equivalent properties in the CloudFormation Docs.

The special value none for ORGANIZATION_ID is used to disable organization based access. The special value account for PRINCIPAL is used to give access to the account the layer is deployed to.

The environment variables are used to create a samconfig.toml file that configures the sam package and sam deploy commands.

Note regarding build process

Previously, some custom docker images were needed to build this layer. AWS has since published newer images which work out of the box. saml-cli version v1.33.0 is using public.ecr.aws/sam/build-nodejs20.x:latest-x86_64

Background

This repo exists as it is rather painful to compile all libraries required to get sharp to work with JP2 files in an AWS Lambda environment. The sharp repository has several issues related to this.

Layer contents

This lambda layer contains the node module sharp. But unlike a normal installation via npm i sharp this layer does not use the prebuilt sharp and libvips binaries. This layer compiles libwebp, libde265, libheif, libvips, and sharp from source in order to provide JP2 (and webp) functionality in an AWS Lambda environment.

CompatibleRuntimes

  • nodejs18.x
  • nodejs20.x

Contributions

If you would like to contribute to this repository, please open an issue or submit a PR.

If you'd like to sponsor work like this, please visit the original repo.

Licenses

Related Resources

Visit sharp.pixelplumbing.com for complete instructions on sharp.

Code Repositories