Socket
Socket
Sign inDemoInstall

sharp

Package Overview
Dependencies
0
Maintainers
1
Versions
153
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sharp

High performance Node.js module to resize JPEG images using the libvips image processing library


Version published
Weekly downloads
4.4M
decreased by-15.61%
Maintainers
1
Created
Weekly downloads
 

Package description

What is sharp?

The sharp npm package is a high-performance Node.js module for resizing, converting, and manipulating images. It is built around the libvips image processing library, which allows it to handle large images and perform operations quickly and with a low memory footprint.

What are sharp's main functionalities?

Image Resizing

Resizes an image to the specified width and height.

sharp('input.jpg').resize(300, 200).toFile('output.jpg', (err, info) => {});

Format Conversion

Converts an image from one format to another, such as JPEG to PNG.

sharp('input.jpg').toFormat('png').toBuffer().then(data => {});

Image Rotation

Rotates an image by a specified degree.

sharp('input.jpg').rotate(90).toBuffer().then(data => {});

Extracting Image Regions

Extracts a region of the image starting at the left and top offsets and with the specified width and height.

sharp('input.jpg').extract({ left: 100, top: 100, width: 300, height: 200 }).toFile('output.jpg', (err, info) => {});

Image Overlay

Overlays an image on top of another using composition.

sharp('input.jpg').composite([{ input: 'overlay.png', gravity: 'southeast' }]).toFile('output.jpg', (err, info) => {});

Adjusting Image Quality

Adjusts the quality of an image, useful for optimizing the file size.

sharp('input.jpg').jpeg({ quality: 80 }).toBuffer().then(data => {});

Other packages similar to sharp

Readme

Source

sharp

adj

  1. clearly defined; distinct: a sharp photographic image.
  2. quick, brisk, or spirited.
  3. shrewd or astute: a sharp bargainer.
  4. (Informal.) very stylish: a sharp dresser; a sharp jacket.

The typical use case for this high performance Node.js module is to convert a large JPEG image to smaller JPEG images of varying dimensions.

It is somewhat opinionated in that it only deals with JPEG images, always obeys the requested dimensions by either cropping or embedding and insists on a mild sharpen of the resulting image.

Under the hood you'll find the blazingly fast libvips image processing library, originally created in 1989 at Birkbeck College and currently maintained by the University of Southampton. Speed is typically 25-30% faster than the imagemagick equivalent.

Prerequisites

Requires node-gyp and libvips-dev to build.

sudo npm install -g node-gyp
sudo apt-get install libvips-dev

Requires vips-7.xx.pc (installed with libvips-dev) to be symlinked as /usr/lib/pkgconfig/vips.pc

Ubuntu 12.04 LTS:

sudo ln -s /usr/lib/pkgconfig/vips-7.26.pc /usr/lib/pkgconfig/vips.pc

Ubuntu 13.04:

sudo ln -s /usr/lib/x86_64-linux-gnu/pkgconfig/vips-7.28.pc /usr/lib/pkgconfig/vips.pc

Install

npm install sharp

Usage

var sharp = require("sharp");
sharp.crop("input.jpg", "output.jpg", 300, 200, function(err) {
  if (err) {
    throw err;
  }
  // output.jpg is cropped input.jpg
});
sharp.embedWhite("input.jpg", "output.jpg", 200, 300, function(err) {
  if (err) {
    throw err;
  }
  // output.jpg contains input.jpg embedded with a white border
});
sharp.embedBlack("input.jpg", "output.jpg", 200, 300, function(err) {
  if (err) {
    throw err;
  }
  // output.jpg contains input.jpg embedded with a black border
});

Testing Build Status

npm test

Keywords

FAQs

Last updated on 20 Aug 2013

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc