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

regioned-image

v1.4.0

Published

Breaks an image into regions of contiguous pixels.

Downloads

15

Readme

regioned-image

Breaks an image into regions of contiguous pixels. You can set the colors and boundaries of regioned images and render them to a canvas.

Setup

Install the package.

npm install regioned-image --save

Require the module.

var RegionedImage = require("regioned-image");

Note: RegionedImage needs to run a browser context. You can use something like browserify to bundle RegionedImage as a dependency. Take a look at the example if you need help with this.

Usage

<canvas id="canvas"></canvas>

<script>
  var image = new RegionedImage("france.svg");
  image.onload = function () {

    // Print the dimensions of the image.
    console.log(image.width);  // 600
    console.log(image.height); // 400

    // Build the regions for the flag of france.
    image.buildRegion({ x: 100, y: 10 }); // Blue
    image.buildRegion({ x: 300, y: 10 }); // White
    image.buildRegion({ x: 500, y: 10 }); // Red

    // Get the blue region from the 'regions' property.
    var blueRegion = image.regions[0];

    // Print the number of pixels in the region.
    console.log(blueRegion.size); // 80000

    // Print the original color of the region.
    console.log(blueRegion.originalColor); // #0055A4

    // Print whether the region contains a cell.
    console.log(blueRegion.contains({ x: 90, y: 20 })); // true

    // Set the region's color to yellow.
    blueRegion.color = "#FFFF00";

    // Set the region's boundary color to green.
    blueRegion.boundaryColor = "#00FF00";

    // Get the red region by specifying a pixel inside the region.
    var redRegion = image.regionAt({ x: 490, y: 20 });

    // Merge the red region into the blue region.
    blueRegion.merge(redRegion);

    // Print the number of pixels in the blue and red regions.
    console.log(blueRegion.size); // 160000
    console.log(redRegion.size);  // 0

    // Print the number of regions in the regioned image.
    console.log(image.regions.length); // 2

    // Render the image to the canvas.
    var canvas = document.getElementById("canvas");
    image.render(canvas);
  };
</script>

You can specify a different width and height for the image at initialization:

var image = new RegionedImage("france.svg", {
  width: 300,
  height: 200
});

The aspect ratio of the image will be preserved. This means that the image may be smaller than the width and height specified.

Serialization

Once the image has loaded, you can serialize your regioned image to json:

var image = new RegionedImage("france.svg");
var json;

image.onload = function () {
  image.buildRegion({ x: 100, y: 10 });
  json = image.toJson();
};

var clone = RegionedImage.fromJson(json);
console.log(clone.regions.length); // 1

Touch events

You can register a touch listener for the regioned image. It will be given the relative coordinates of the touch:

var image = new RegionedImage("france.svg");
var canvas = document.getElementById("canvas");

image.onload = function () {
  image.render(canvas);
};

image.ontouch = function (x, y) {
  var region = image.buildRegion({ x: x, y: y });
  region.color = "#FFFF00";
  image.render(canvas);
};

Reset

You can reset all region colors and boundary colors with the #reset method.

Note: If regions of different colors have been merged, it will reset to the original color of the merging region, which may not be the same as the original image.

## Screenshot

Screenshot

Contribution

Please send a pull request or open an issue.

You should follow me on twitter.