image-to-zpl
v1.0.1
Published
Converts images to ZPL.
Downloads
165
Readme
Image to ZPL
Getting output from the command line
const ImageToZPL = require('./index');
ImageToZPL('./libs/home.png').then(zpl => {
console.log(zpl);
});
Saving output to a file.
const ImageToZPL = require('./index');
ImageToZPL('./libs/home.png', './libs/home.zpl');