├── .gitignore ├── LICENSE ├── README.md ├── app.html ├── app.js ├── barcodeWriter.html ├── barcodeWriter.js ├── common.js ├── examples ├── Decode barcodes.json ├── Generate barcodes.json ├── Get image from internet set quality.json ├── Image manipulation.json ├── Long text.json └── Print text to image.json ├── icons ├── image.png └── qrcode.png ├── imageViewer.html ├── imageViewer.js ├── jimp.html ├── jimp.js ├── package.json ├── performanceLogger.js ├── static ├── css │ └── common.css └── js │ └── image_tools.js ├── xzingDecode.html └── xzingDecode.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/README.md -------------------------------------------------------------------------------- /app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/app.html -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/app.js -------------------------------------------------------------------------------- /barcodeWriter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/barcodeWriter.html -------------------------------------------------------------------------------- /barcodeWriter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/barcodeWriter.js -------------------------------------------------------------------------------- /common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/common.js -------------------------------------------------------------------------------- /examples/Decode barcodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/examples/Decode barcodes.json -------------------------------------------------------------------------------- /examples/Generate barcodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/examples/Generate barcodes.json -------------------------------------------------------------------------------- /examples/Get image from internet set quality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/examples/Get image from internet set quality.json -------------------------------------------------------------------------------- /examples/Image manipulation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/examples/Image manipulation.json -------------------------------------------------------------------------------- /examples/Long text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/examples/Long text.json -------------------------------------------------------------------------------- /examples/Print text to image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/examples/Print text to image.json -------------------------------------------------------------------------------- /icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/icons/image.png -------------------------------------------------------------------------------- /icons/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/icons/qrcode.png -------------------------------------------------------------------------------- /imageViewer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/imageViewer.html -------------------------------------------------------------------------------- /imageViewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/imageViewer.js -------------------------------------------------------------------------------- /jimp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/jimp.html -------------------------------------------------------------------------------- /jimp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/jimp.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/package.json -------------------------------------------------------------------------------- /performanceLogger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/performanceLogger.js -------------------------------------------------------------------------------- /static/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/static/css/common.css -------------------------------------------------------------------------------- /static/js/image_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/static/js/image_tools.js -------------------------------------------------------------------------------- /xzingDecode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/xzingDecode.html -------------------------------------------------------------------------------- /xzingDecode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Steve-Mcl/node-red-contrib-image-tools/HEAD/xzingDecode.js --------------------------------------------------------------------------------