Express middleware for resizing images.
Explore the docs »
View Demo
·
Report Bug
·
Request Feature
Table of Contents
@knovator/image-resizeris an express middleware that generates images of size and format passed in URL usingsharppackage.@knovator/image-resizertakes input ofpublicfolder path and when it receives a request it checks if the requested image exists in thepublicfolder. If it doesn't, it generates the image in resolution folder.- resolution is passed in the URL as
widthandheightparameters. For example, in/images/1200x850/image.jpgURL1200is width and850is height. It accepts resolution from 2 digits to 6 digits.. - Image generation done in following setps:
- Check if the image exists in the
publicfolder by removing resolution. For example/images/800x800/image.jpgwill be checked in/images/image.(jpg|png|webp|jpeg).
- If the image doesn't exist, it generates the image in specified resolution folder.
- Check if the image exists in the
- It also generates images of different format in resolution folder if the image of that format is not exists.
- For example
/images/800x800/image.jpgimage request will be generated as/images/800x800/image.jpgby taking/images/image.(jpg|png|webp|jpeg)as input.
- For example
It's required to use
resizemiddleware before usingexpress.staticmiddleware.
@knovator/image-resizer is built as an express middleware, so NodeJS application setup with expressjs is required to start.
- Install the package
npm i @knovator/image-resizer # or yarn add @knovator/image-resizer
- Usage of
@knovator/image-resizeris simple. It takes input of public folder path similar toexpress.staticmiddleware.For example,const { resize } = require('@knovator/image-resizer'); app.use(resize(__dirname + '/public'));
@knovator/image-resizerconsidersjpg,png,webpandjpegimage formats. if you want to use other formats, you can pass it in theextensionsparameter. For example,const { resize } = require('@knovator/image-resizer'); app.use(resize(__dirname + '/public', { extensions: ['.png', '.jpg', '.jpeg', '.webp'] }));
const express = require('express');
const app = express();
const PORT = 8080;
const { resize } = require('@knovator/image-resize');
app.get('/status', (_req, res) => {
res.send('All Okay');
});
app.use(resize(__dirname + '/public'));
app.use(express.static(__dirname + '/public'));
app.listen(PORT, () => {
console.log(`App started on ${PORT}`);
});@knovator/image-resizer is built to generate images of different resolution and format. It can be used in following usecases:
- Generate images of different resolution like
600x600,1280x720,1920x1080etc. - Generate images of different formats like
webp,png,jpgetc. - Doing image transformation on the basis of requests.
- Serving and transforming images from local folder.
If you have any other usecase, please open an issue with tag usecase. We will try to add it in our roadmap.
- Add test cases
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt for more information.
Knovator Technologies
- Twitter @knovator
- Web https://knovator.com/