
ImageRot (/ΛΙͺm.ΙͺdΚ.rΙt/ noun) is a lightweight, efficient, cross-environment image library. It lets you apply unique effects and modes to images by manipulating raw image buffers.
This library works in both the browser and node.
To get started, you can read the API documentation.
You can also check out the ImageRot UI if you want to test out different effects or modes!
- Achieves similar results in both Node and browser environments.
- Ensures good integration and usage across different environments.
- Allows for a custom build that only includes the desired effects or modes.
- Compatible to be run within web workers in the browser, enabling smoother and heavily improved performance.
- Built with an emphasis on lightness, the package requires zero dependencies in the browser environment.
- Just include the script, and you're done!
For use in the browser, the easiest way to get started is to use the pre-built source available in dist.
Include the script in your HTML <head/>
tag:
<script type="text/javascript" src="/dist/imagerot.min.js"></script>
To use it in Node, install it using NPM:
npm install --save imagerot
Import the package:
import imagerot from 'imagerot';
If you are targeting the browser, you can instead use:
import imagerot from 'imagerot/browser';
The basic usage is the same in Node as it is in the browser.
The general workflow consists of staging (preparing) an input, then modifying it by applying different modes or effects to it:
let staged = await imagerot.stage({
// This can be a browser File, a pre-staged variable or even a Buffer returned from `fs`
data: file
// URLs are supported too:
//url: 'https://upload.wikimedia.org/wikipedia/commons/4/42/Shaqi_jrvej.jpg'
});
Generally, effects are smaller, more controllable effects that can be chained to create unique effects. Modes on the other hand are more complete overhauls of the image, often consisting of mulitple effects used, or even completely custom methods. These modes are meant to provide a more specific and unique result, while effects are more for smaller edits or for chaining them with each other to create unique effects.
To modify the staged variable:
// Apply the `chimera` mode to the image
staged = await imagerot.useMode(staged, 'chimera');
// Apply a `pixelate` effect to the image
staged = await imagerot.useEffect(staged, 'pixelate', { intensity: 50 });
The project exports some environment-specific variables for both browser and Node, but in this example we'll only cover the basic ones.
For a more detailed overview of the available functions, refer to the API documentation.
To display the modified image in the Browser, one can use bufferToBlob()
:
const img = document.querySelector('img.output');
// Convert the buffer to a Blob URL and display it
img.setAttribute('src', await imagerot.bufferToBlob(staged));
Or, to save the modified image in Node, you can use saveBuffer()
const output = `${Math.floor(Date.now() / 1000)}.png`;
await imagerot.saveBuffer(staged, output);
You can build the project from source yourself. Clone it, install the packages, and run the build:
git clone https://github.com/sixem/imagerot/
cd imagerot
npm install
npm run build
The canvas
package may require building from source for some platforms or environments. So, if you get any errors during npm install
try installing these packages for your OS or distro:
OS/Distro | Installation |
---|---|
macOS | brew install pkg-config cairo pango libpng jpeg giflib librsvg pixman python-setuptools |
Ubuntu | sudo apt-get install build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev |
Fedora | sudo yum install gcc-c++ cairo-devel pango-devel libjpeg-turbo-devel giflib-devel |
Solaris | pkgin install cairo pango pkg-config xproto renderproto kbproto xextproto |
OpenBSD | doas pkg_add cairo pango png jpeg giflib |
Others | See the wiki |
Once built, it will create both a lib
for Node-usage and a dist
with the packaged browser-compatible files.
You can also adjust the exported effects and modes before building, if you want to create a customized bundle.
Enviornment | Command |
---|---|
Browser | npm run build:webpack |
Node | npm run build:ts |
Some example results of various modes applied to different images.




Want to contribute?
Familiarize yourself with the current effects, modes, and how they work, and feel free to submit your own creations. Effects are smaller building blocks and easier to add, while modes are more complex and should feel a bit more unique to get accepted.
Whether it's code or just suggestions and feedback, all contributions are welcome!
If you enjoy this project, I'd really appreciate it if you'd leave a star! β
This project has taken a lot of inspiration from datamosh, which is a similar project, so big thanks to the creator of that! π
ImageRot was created to provide a way to easily manipulate buffers in the browser. It puts a big focus on general effects, image editing, and the combination of effects and modes to create unique results!
Much love.