img-tile

1.0.0 • Public • Published

img-tile

tile an <img> from a given width and height

mario tileset split into 16x16 fragments

const tile = require("img-tile")
const load = require("img-load")
 
load("./tiles.png", (err, image) => {
  if (err) throw err
  let tiles = tile(image, 16, 16)
  for (let tile of tiles) {
    document.body.appendChild(tile)
  }
})

usage

npm badge

tile(image, width, height) -> images

Splits the given image into individual <canvas> elements of the dimensions described by width and height.

  • image: The HTMLImageElement to be split
  • width: The desired width of each resulting <canvas> element
  • height: The desired height of each resulting <canvas> element

Package Sidebar

Install

npm i img-tile

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

4.59 kB

Total Files

5

Last publish

Collaborators

  • semibran