npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

apl-image-packer

v1.1.0

Published

Simple fast bin packer for use with anything with dimensions

Downloads

16

Readme

Simple image/box packer

A lightweight function that takes a set of dimensions and packs them as best it can producing a list of positions. Useful if you want to perform your own rendering via WebGL/Canvas etc.

Features

  • Fast (can pack 1000 boxes of variable dimensions in ~20ms on an i7-2600)
  • No dependencies, very small footprint (~3KB minified)
  • Generated atlas designed to be as square as possible
  • Typescript definitions provided

example output

How to use


import { createAtlas } from 'apl-image-packer';

interface customObj {
  width: number;
  height: number;
  name: string;
}

const atlas = createAtlas<customObj>([
  {
    width: 100,
    height: 200,
    name: 'one'
  },
  {
    width: 450,
    height: 300,
    name: 'two'
  }
]);

/* atlas contains:
{
  coords: [
    {
      //the coordinates for the box
      x: 120,
      y: 140,
      
      //the original object provided (can contain more properties if needed)
      img: {
        width: 100,
        height: 200
      }
    },
    ...
  ],
  //the dimensions of the containing box
  width: 550,
  height: 456
}
*/

Using in node

Install via npm install apl-image-packer, then import via ES6 Modules:

import { createAtlas } from 'apl-image-packer';

Using in the browser

Add the script tag below or download it an bundle it with your own scripts.

<script src="http://unpkg.com/apl-image-packer/lib/apl-image-packer.min.js"></script>

API

Interfaces

ImagePackerDimension

An object that should be provided to specify the dimensions of the box you want to pack. Other properties can and should be used, i.e. the src to the image

| Name | Type | Description | |---|---|---| | width | number | The width of the image | | height | number | The height of the image |

ImagePackerAtlas

Contains the list of coordinates and result dimensions of the atlas.

| Name | Type | Description | |---|---|---| | coords | Array<IImagePackerCoord> | List of coordinates for the boxes in the atlas (not same order as original list) | | width | number | The width of the atlas | | height | number | The height of the atlas |

ImagePackerCoord

Links back to the dimension object provided, defines the x and y position to insert the box into the atlas.

| Name | Type | Description | |---|---|---| | x | number | The x position to insert into the atlas (from the left) | | y | number | The y position to insert into the atlas (from the top) | | img | ImagePackerDimension | The original object that was given with the dimensions (can contain more properties) |

Classes

ImagePacker

The main class used to create the atlas

| Method | Description | Paramaters | Return Type | |---|---|---|---| | createAtlas | Creates the atlas from the provided list of dimensions | imgs: Array<ImagePackerDimension> | atlas: ImagePackerAtlas |

Licence

All code is licenced under MIT.