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

@tutagomes/img2gcode

v1.2.4

Published

convert jpg, png, gif to gcode with nodejs and jimp.

Downloads

4

Readme

Image to GCode

Convert jpg, jpeg, png, gif to gcode with NodeJS.

  • Generate GCode with absolute coordinates, finds a black pixel if you follow the trail.
  • This version is faster previous versions.
  • Find the shortest path to the next black pixel.

img2gcode with CNC-ino

Installation

$ npm install img2gcode

Quick Start

Depending on the configuration between tool and image height generates better code.

var img2gcode = require("img2gcode");

img2gcode
  .start({
    // It is mm
    toolDiameter: 2,
    scaleAxes: 700,
    deepStep: -1,
    whiteZ: 0,
    blackZ: -2,
    safeZ: 2,
    gcodeFile: 'output', // Name of gcode output file. If not provided, will not save the output, only returning the array when completed.
    image: __dirname + '/img-and-gcode/test.jpeg' // Or Buffer from base64 -> https://github.com/oliver-moran/jimp/issues/231
  }).then((data) => {
    console.log(data.config);
    console.log(data.dirgcode);
    console.log(data.gcode[0]);
  });

Options

  • toolDiameter (number) Tool diameter. default: 1
  • sensitivity (number) Intensity sensitivity. 0 to 1. default: 0.95
  • scaleAxes (number) Image height in mm. default: image.height equal mm
  • deepStep (number) Depth per pass. default: -1
  • invest { x: (boolean), y: (boolean) } default: {x: false, y: true}.
  • image (string | Buffer) Image path, accepts JPEG JPG PNG GIF formats.
  • gcodeFile {string} GCode file output name. Must be provided for Buffered images. On file images, if not provided, the name will be {image_name}.gcode
  • whiteZ (number) White pixels. default: 0
  • blackZ (number) Maximum depth (Black pixels).
  • safeZ (number) Safe distance.
  • info (string) Displays information. ["none" | "console" | "emitter"] default: none
  • feedrate { work: (number), idle: (number) } Only the corresponding line is added. default: ''
  • laser { commandPowerOn: (string), commandPowerOff: (string) } Is you set this options, Z command is will be ignore

Events

Only if Options.info it is "emitter"

  • log Displays information.
  • tick Percentage of black pixels processed. 0 (0%) to 1 (100%).
  • error Displays error.
  • complete Emits at the end with "then".

Method

  • then This function is called to finish saving the file GCode and receives an object: { config , dirgcode }

Examples

var img2gcode = require("img2gcode");
var ProgressBar = require("progress"); // npm install progress
var bar = new ProgressBar("Analyze: [:bar] :percent :etas", { total: 100 });

img2gcode
  .start({
    // It is mm
    toolDiameter: 1,
    scaleAxes: 700,
    deepStep: -1,
    feedrate: { work: 1200, idle: 3000 },
    whiteZ: 0,
    blackZ: -2,
    safeZ: 1,
    info: "emitter", // "none" or "console" or "emitter"
    image: __dirname + "/img-and-gcode/test.png",
  })
  .on("log", (str) => {
    console.log(str);
  })
  .on("tick", (perc) => {
    bar.update(perc);
  })
  .then((data) => {
    console.log(data.dirgcode);
  });

Config for laser options

const options = {
  // It is mm
  toolDiameter: 3,
  sensitivity: 0.9,
  scaleAxes: 128,
  feedrate: { work: 1200, idle: 3000 },
  deepStep: -1,
  laser: {
    commandPowerOn: "M04",
    commandPowerOff: "M05",
  },
  whiteZ: 0,
  blackZ: -3,
  safeZ: 1,
  info: "emitter",
  image: path.normalize(__dirname + imgFile),
};

License.

I hope someone else will serve (MIT).

Author: Marani Matias Ezequiel.


Buy Me A Coffee ☕️