1. Products
  2.   Image
  3.   Node.js
  4.   Sharp
 
  

Free Node.js API to Create & Convert Images

Open Source Node.js Library Fully Support Automated Imagec onversion, Resizing, Editing Rotating & more inside Node.js Applications.

Image processing is a fundamental aspect of many modern applications, from web development to mobile apps. When it comes to efficient and high-performance image processing in Node.js, the Sharp API stands out as a leading open-source library. Sharp is an open-source, high-performance image processing library built on top of the libvips library. Known for its speed and low memory usage, Sharp is designed to handle large-scale image processing tasks efficiently. It is particularly popular among developers for its ease of use, extensive format support, and powerful features. I supports several important features, such as dynamically generate personalized images, image resizing, automated image conversion, cropping or flipping an Image and many more.

The Sharp API is a powerful tool for software developers looking to incorporate high-performance image processing into their Node.js applications. It supports a range of image file formats including JPEG, PNG, WebP, TIFF, GIF, AVIF, and even raw pixel data. This versatility enables software developers to work with images from different sources without worrying about compatibility issues. The API is fully asynchronous, which means it can handle multiple image processing tasks concurrently. This non-blocking architecture is ideal for applications that require high throughput and scalability. Its combination of speed, efficiency, and a wide range of features makes it an ideal choice for projects that require real-time image manipulation, format conversion, or complex image processing tasks.

Previous Next

Getting Started with Sharp

The recommended way to install Sharp via NPM. Please use the following command to install it.

Install Sharp via NPM

npm install sharp
const sharp = require('sharp');

Automated Image Processing in Node.js Apps

Developers can use Sharp library to automate image processing tasks, such as generating thumbnails, converting image formats, or applying watermarks. This is particularly useful for content management systems (CMS), e-commerce platforms, and social media applications where large volumes of images need to be processed consistently. Its extensive transformation capabilities make it a suitable foundation for building custom image editors. Whether creating a web-based photo editor or a mobile app for editing images, Sharp provides the necessary tools to implement advanced image manipulation features. Here is an example that shows how to adjust brightness and contrast of an image inside Node.js environment.

How to Adjust Brightness and Contrast of an Image inside Node.js Apps?

sharp('input.jpg')
  .modulate({
    brightness: 1.2, // Increase brightness by 20%
    contrast: 1.5    // Increase contrast by 50%
  })
  .toFile('output.jpg')
  .then(() => console.log('Image brightness and contrast adjusted'))
  .catch(err => console.error('Error:', err));

Image Resizing & Optimization in Node.js

For web applications that serve images, performance is key. With open source Sharp library, software developers can create a service that automatically resizes and optimizes images for different devices and screen sizes. For instance, an e-commerce platform can use Sharp to generate multiple versions of product images (thumbnails, medium-sized images, and high-resolution images) on the fly. This ensures that users get the best image quality and loading speed regardless of their device. Here is a simple example that shows, how software developers can load and resize an Image inside Node.js applications.

How to Load and Resize JPG Image inside Node.js Apps?

const sharp = require('sharp');

sharp('input.jpg')
  .resize({ width: 300 })
  .toFile('output.jpg')
  .then(() => {
    console.log('Image resized successfully');
  })
  .catch(err => {
    console.error('Error processing image:', err);
  });

Automated Image Conversion in Content Management Systems

In content-heavy platforms like blogs or news websites, images often come in various formats. The open source Sharp library can automate the conversion of these images into a standard format that’s optimized for web use. For example, converting all images to the WebP format can significantly reduce file size and improve load times without compromising quality. Here is a very powerful code example that shows how software developers can create personalize Images inside Node.js applications.

How to Create Personalize Images inside Node.js Apps?

sharp({
  create: {
    width: 300,
    height: 200,
    channels: 4,
    background: { r: 255, g: 255, b: 255, alpha: 0.5 }
  }
})
  .composite([{ input: 'overlay.png', gravity: 'center' }])
  .toFile('output.png')
  .then(() => {
    console.log('Personalized image created');
  })
  .catch(err => {
    console.error('Error generating image:', err);
  });

Multiple Image Formats Support

The open source Sharp library has provided support for a wide array of image file formats, such as JPEG PNG, TIFF, GIF, and even modern formats like WebP and AVIF. This versatility gives software developers the power to work with various types of images, ensuring compatibility across different platforms and devices.