An open API service indexing awesome lists of open source software.

https://github.com/abhyudayasharma/image2gcode

A Node.js web-app for converting any JPEG or PNG image to CNC GCode
https://github.com/abhyudayasharma/image2gcode

cnc-machine gcode image-processing javascript

Last synced: 3 months ago
JSON representation

A Node.js web-app for converting any JPEG or PNG image to CNC GCode

Awesome Lists containing this project

README

        

# Image2GCode

Converts an image to GCode using [svg2gcode](https://github.com/em/svg2gcode)
as the generator for the GCode. The image is first converted to an SVG
file and is then traced to GCode.

![screenshot](./public/img/screenshot.png)
![screenshot2](./public/img/screenshot2.png)

## Running the app

- Install [GraphicsMagick](http://www.graphicsmagick.org/) for your OS.
- Clone the repository and run `npm install`.
- Use `npm test` to check if everything is working fine.
- `npm start` starts the server. Go to `localhost:3000` in your favorite
browser to generate the GCode for almost any JPG or PNG file.

Work is under progress to add many more options.