Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

spritesmith

twolfson279kMIT3.5.1TypeScript support: definitely-typed

Utility that takes images and creates a spritesheet with JSON sprite data

sprite, spritesheet, css

readme

spritesmith Build status Subscribe to newsletter

Convert images into spritesheets and coordinate maps.

spritesmith is also available as:

A folder of icons processed by spritesmith:

Fork icon + GitHub icon + Twitter icon =

generates a spritesheet:

spritesheet

and a coordinate map:

{
  "/home/todd/github/spritesmith/docs/fork.png": {
    "x": 0,
    "y": 0,
    "width": 32,
    "height": 32
  },
  "/home/todd/github/spritesmith/docs/github.png": {
    "x": 32,
    "y": 0,
    "width": 32,
    "height": 32
  },
  // ...
}

Do you like spritesmith?

Support us via donations or spread word on Twitter

Breaking changes in 2.0.0

We have moved from result.image being a binary string to it being a Buffer. This is to use more canonical conventions in Node.js.

We have moved from spritesmith-engine-spec@1.1.0 to spritesmith-engine-spec@2.0.0. This means if you use an custom engine (e.g. gmsmith, canvassmith), then you will need to upgrade it.

npm install my-engine-smith@latest --save-dev

By upgrading the engine, we added support for Vinyl objects via src as well as future-proof ourselves for forwarding streaming outputs.

Breaking changes in 3.0.0

We have updated our API to return streams for images. This required moving to a constructor and splitting apart image creation and processing.

We have maintained legacy support for spritesmith via Spritesmith.run which has an identical API to the spritesmith function in spritesmith<3.0.0.

// Before
var spritesmith = require('spritesmith');
spritesmith({src: sprites}, function handleResult (err, result) { /* ... */ });

// After
var Spritesmith = require('spritesmith');
Spritesmith.run({src: sprites}, function handleResult (err, result) { /* ... */ });

Getting started

spritesmith can be installed via npm: npm install spritesmith

// Load in dependencies
var Spritesmith = require('spritesmith');

// Generate our spritesheet
var sprites = ['fork.png', 'github.png', 'twitter.png'];
Spritesmith.run({src: sprites}, function handleResult (err, result) {
  result.image; // Buffer representation of image
  result.coordinates; // Object mapping filename to {x, y, width, height} of image
  result.properties; // Object with metadata about spritesheet {width, height}
});

Usage with streaming output

We support streaming output by breaking down run into 2 parts:

// Load in dependencies
var Spritesmith = require('spritesmith');

// Create a new spritesmith and process our images
var sprites = ['fork.png', 'github.png', 'twitter.png'];
var spritesmith = new Spritesmith();
spritesmith.createImages(sprites, function handleImages (err, images) {
  images[0].width; // Width of image
  images[0].height; // Height of image

  // Create our result
  var result = spritesmith.processImages(images);
  result.image; // Readable stream outputting image
  result.coordinates; // Object mapping filename to {x, y, width, height} of image
  result.properties; // Object with metadata about spritesheet {width, height}
});

Documentation

spritesmith exports a Spritesmith constructor as its module.exports.

If you would like a faster build time or need to support an obscure image format, see params.engine.

If you would like to adjust how images are laid out, see params.algorithm and params.algorithmOpts.

Spritesmith.run(params, callback)

Helper function that initializes a new Spritesmith instance, creates images, and processes them into a spritesheet

  • params Object - Container for parameters
    • src String[]|Object[] - Same as src for spritesmith.createImages
    • All other parameters accepted by new Spritesmith or processImages should be passed in here (e.g. engine, algorithm)
  • callback Function - Error-first function that receives compiled spritesheet and information
    • callback should have signature function (err, result)
    • err Error|null - If an error occurred, this will be it
    • result Object - Container for result items
      • Same signature as content returned by spritesmith.processImages (i.e. {image, coordinates, properties})
      • image Buffer - In-memory representation of image
      • coordinates Object - Same as coordinates returned by spritesmith.processImages
      • properties Object - Same as properties returned by spritesmith.processImages

new Spritesmith(params)

Constructor for a new Spritesmith instance

  • params Object - Container for parameters
    • engine String|Object - Optional engine override to use
    • engineOpts Object - Options to pass through to engine for settings
      • For example phantomjssmith accepts timeout via {engineOpts: {timeout: 10000}}
      • See your engine's documentation for available options

spritesmith.createImages(src, callback)

Interpret images via the spritesmith engine

  • src String[]|Object[] - Array of filepaths for images to include in spritesheet
    • If a String is provided, then it's used as the image's filepath
    • If an Object is provided, then it should be a Vinyl object pointing to the source image
      • Depending on the engine, we may/may not use the contents (e.g. gmsmith uses filepaths only)
  • callback Function - Error-first function that receives compiled spritesheet and map
    • callback should have signature function (err, images)
    • err Error|null - If an error occurred, this will be it
    • images Object[] - Array of processed images
      • Each image will be a proprietary object for the engine
      • Each image will line up with the specification from spritesmith-engine-spec
      • image Object - Metadata container about corresponding input image at same index
        • height Number - Height in pixels of corresponding input image at same index
        • width Number - Width in pixels of corresponding input image at same index

spritesheet.processImages(images, options)

Place interpretted images on a canvas and export spritesheet

  • images Object[] - Images generated via spritesmith.createImages
  • options Object - Container for options
    • padding Number - Padding to use between images
      • For example if 2 is provided, then there will be a 2px gap to the right and bottom between each image
      • An example usage of padding can be found in the Examples section
    • exportOpts Mixed - Options to pass through to engine for export
      • For example gmsmith supports quality via {exportOpts: {quality: 75}}
      • See your engine's documentation for available options
    • algorithm String - Optional algorithm to pack images with
      • By default we use binary-tree which packs images as efficiently as possible
      • An example usage of algorithm can be found in the Examples section
      • For more algorithm options, see the Algorithms section
    • algorithmOpts Object - Optional algorithm options to pass through to algorithm for layout

Returns:

  • result Object - Container for result information
    • image ReadableStream - Readable stream outputting generated image contents
    • coordinates Object - Map from filepath to coordinate information between original sprite and spritesheet
      • filepath will be the same as provided in params.src
      • [filepath] Object - Container for coordinate information
        • For those keeping track, this is result.coordinates[filepath]
        • x Number - Horizontal position of top-left corner of original sprite on spritesheet
        • y Number - Vertical position of top-left corner of original sprite on spritesheet
        • width Number - Width of original sprite
        • height Number - Height of original sprite
    • properties Object - Container for information about spritesheet
      • width Number - Width of the spritesheet
      • height Number - Height of the spritesheet

Algorithms

Images can be laid out in different fashions depending on the algorithm. We use layout to provide you as many options as possible. At the time of writing, here are your options for params.algorithm:

top-down left-right diagonal alt-diagonal binary-tree
top-down left-right diagonal alt-diagonal binary-tree

More information can be found in the layout documentation:

https://github.com/twolfson/layout

Engines

An engine can greatly improve the speed of your build (e.g. canvassmith) or support obscure image formats (e.g. gmsmith).

All spritesmith engines adhere to a common specification:

https://github.com/twolfson/spritesmith-engine-spec

This repository adheres to specification version: 2.0.0

Below is a list of known engines with their tradeoffs:

pixelsmith

pixelsmith is a node based engine that runs on top of get-pixels and save-pixels.

Key differences: Doesn't support uncommon image formats (e.g. tiff) and not as fast as a compiled library (e.g. canvassmith).

phantomjssmith

phantomjssmith is a phantomjs based engine. It was originally built to provide cross-platform compatibility but has since been succeeded by pixelsmith.

Requirements: phantomjs must be installed on your machine and on your PATH environment variable. Visit the phantomjs website for installation instructions.

Key differences: phantomjs is cross-platform and supports all image formats.

canvassmith

canvassmith is a node-canvas based engine that runs on top of Cairo.

Requirements: Cairo and node-gyp must be installed on your machine.

Instructions on how to install Cairo are provided in the node-canvas wiki.

node-gyp should be installed via npm:

npm install -g node-gyp

Key differences: canvas has the best performance (useful for over 100 sprites). However, it is UNIX only.

gmsmith

gmsmith is a gm based engine that runs on top of either Graphics Magick or Image Magick.

Requirements: Either Graphics Magick or Image Magick must be installed on your machine.

For the best results, install from the site rather than through a package manager (e.g. apt-get). This avoids potential transparency issues which have been reported.

Image Magick is implicitly discovered. However, you can explicitly use it via engineOpts

{
  engineOpts: {
    imagemagick: true
  }
}

Key differences: gmsmith allows for configuring image quality whereas others do not.

Examples

Algorithm

This is an example of using a custom layout via the alt-diagonal algorithm.

// Load in dependencies
var fs = require('fs');
var Spritesmith = require('spritesmith');

// Generate our spritesheet
Spritesmith.run({
  src: [
    __dirname + '/fork.png',
    __dirname + '/github.png',
    __dirname + '/twitter.png'
  ],
  algorithm: 'alt-diagonal'
}, function handleResult (err, result) {
  // If there was an error, throw it
  if (err) {
    throw err;
  }

  // Output the image
  fs.writeFileSync(__dirname + '/alt-diagonal.png', result.image);
  result.coordinates, result.properties; // Coordinates and properties
});

Result:

alt-diagonal spritesheet

Engine

This is an example of using a custom engine (canvassmith in this case).

// Inside package.json
{
    "dependencies": {
        "canvassmith": "~0.2.4"
    }
}
// In our script
// Load in dependencies
var fs = require('fs');
var Spritesmith = require('spritesmith');

// Generate our spritesheet
Spritesmith.run({
  src: [
    __dirname + '/fork.png',
    __dirname + '/github.png',
    __dirname + '/twitter.png'
  ],
  engine: require('canvassmith')
}, function handleResult (err, result) {
  // If there was an error, throw it
  if (err) {
    throw err;
  }

  // Output the image
  fs.writeFileSync(__dirname + '/canvassmith.png', result.image);
  result.coordinates, result.properties; // Coordinates and properties
});

Result:

canvassmith spritesheet

Padding

This is an example of adding padding between images.

// Load in dependencies
var fs = require('fs');
var Spritesmith = require('spritesmith');

// Generate our spritesheet
Spritesmith.run({
  src: [
    __dirname + '/fork.png',
    __dirname + '/github.png',
    __dirname + '/twitter.png'
  ],
  padding: 20 // Exaggerated for visibility, normally 1 or 2
}, function handleResult (err, result) {
  // If there was an error, throw it
  if (err) {
    throw err;
  }

  // Output the image
  fs.writeFileSync(__dirname + '/padding.png', result.image);
  result.coordinates, result.properties; // Coordinates and properties
});

Result:

padding spritesheet

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint via npm run lint and test via npm test.

Attribution

GitHub and Twitter icons were taken from Alex Peattie's JustVector Social Icons.

Fork designed by P.J. Onori from The Noun Project

Plus and Equals icons were built using the Ubuntu Light typeface.

License

Copyright (c) 2012 Todd Wolfson

Licensed under the MIT license.

changelog

spritesmith changelog

3.5.1 - Fixed deprecated Buffer usage in #96, via @ChrisdeWolf

3.5.0 - Upgraded to `semver@5.7.2` to fix #92, via @ChrisdeWolf in #95

3.4.1 - Upgraded Travis CI Node.js environment and to `canvassmith@1.7.0indevDependencies`

3.4.0 - Upgraded to `pixelsmith@2.3.0to propagatenpm audit` fix

3.3.1 - Corrected license attribution and URL

3.3.0 - Upgraded to `pixelsmith@2.2.0` to add support for Vinyl@2

3.2.1 - Switched from twolfson-style to ESLint

3.2.0 - Removed support for Node.js < 4

3.1.1 - Added support for transpiled ES6 modules

3.1.0 - Upgraded to `pixelsmith@2.1.0` to add quality support for JPEG images

3.0.1 - Updated donation URL

3.0.0 - Moved to class and added support for outputting streams

2.0.1 - Updated donation URL

2.0.0 - Upgraded to `spritesmith-engine-spec@2.0.0`

1.5.0 - Added requisite for specVersion to be provided by an engine

1.4.6 - Moved to older version of npm to repair Travis CI

1.4.5 - Updated link to specification

1.4.4 - Moved to Gratipay to bit.ly for donations

1.4.3 - Added newsletter badge to README

1.4.2 - Updated supported node version to >= 0.10.0

1.4.1 - Added foundry for release

1.4.0 - Upgraded to `pixelsmith@1.2.0` to add better PNG support

1.3.2 - Moved off of deprecated "licenses" to "license" in package.json via @pdehaan in #54

1.3.1 - Added `node@0.12andiojsto CI tests. Temporarily ignoringiojsdue tocanvassmith` building issues

1.3.0 - Upgraded to `pixelsmith@1.1.0` to pick up background fill support. Fixes twolfson/gulp.spritesmith#33

1.2.0 - Upgraded to `layout@2.2.0to restore optimalbinary-tree` packing. Fixes #48

1.1.0 - Upgraded to `layout@2.1.0to supportAtom/node-webkit` environments

1.0.3 - Added links to examples from other documentation sections

1.0.2 - Moved to consistent documentation bullets with grunt-spritesmith and gulp.spritesmith

1.0.1 - Added attribution to README

1.0.0 - Major release with multiple breaking changes:

  • Moved to pixelsmith as default engine
  • Removed all other engines
  • Removed addEngine
  • Overhauled documentation
  • Made tests more explicit
  • Moved to binary-tree as default algorithm

0.21.2 - Moved to fix-travis-ci to resolve `node@0.8+jscs` issues

0.21.1 - Fixed up style issues in README

0.21.0 - Added twolfson-style for consistent styling and linting

0.20.1 - Fixed bad image handling

0.20.0 - Upgraded to `phantomjssmith@0.5.0` to pick up JPEG support

0.19.6 - Replaced doubleshot with mocha and cleaned up test suite

0.19.5 - Moved to `npm@1.x.xin Travis CI to fixnode@0.8` issues

0.19.4 - Added npm upgrade to Travis CI to fix `node@0.8` issues

0.19.3 - Added link to CLI utility via @bevacqua in #46

0.19.2 - Updated documentation for adding new engines. Fixes #44

0.19.1 - Added link to gulp.spritesmith via @hitautodestruct in #40

0.19.0 - Added ability to turn off image sorting via imageOpts

0.18.0 - Upgraded gmsmith to implicitly find imagemagick

0.17.5 - Upgraded doubleshot to latest for proper exit codes

0.17.4 - Fixed bad name for pngsmith in fallback chain

0.17.3 - Fixed bad fallback chain. Fixes twolfson/grunt-spritesmith#62

0.17.2 - Integrated Travis CI

0.17.1 - Fixed missing links in README

0.17.0 - Added pngsmith as an engine, allowing external dependency-free installation

0.16.0 - Moved to `canvassmith@0.2.0forgiflib` support

0.15.0 - Moved to `phantomjssmith@0.4.0and addedtimeout` option

0.14.0 - Moved to `gmsmith@0.3.0` for detection of imagemagick

0.13.0 - Moved to `phantomjssmith@0.3.0` and fixed bad expected sprite

0.12.1 - Fixed up test files

0.12.0 - Moved to latest phantomjssmith for reduced file size output

0.11.1 - Rearranged README and added notes about engines

0.11.0 - Optimize padded spritesheets to ignore trailing padding

0.10.0 - Adding padding parameter to params

0.9.0 - Added properties to output (i.e. spritesheet height and width)

0.8.0 - Added support for engineOpts and upgraded gmsmith to 0.2.0 for imagemagick engineOpt

0.7.1 - See git log