node-zxing
v0.1.4
Published
ZXing Wrapper
Downloads
147
Readme
Node-ZXing
This is a Node.JS wrapper for Zebra Crossing aka ZXing.
Installation
npm install node-zxing
Usage overview
var options = {}
var qrdecoder = require('./node-zxing')(options);
var path = "./a.jpg";
qrdecoder.decode(path,
function(err, out) {
console.log(err,out);
}
);
Options
{
ZXingLocation: "/path",
try_harder: false,
multi: false
}
ZXing
In this repository are two jars (javase.jar and core.jar). Both of these belong to https://github.com/zxing/zxing and were retrieved from http://repo1.maven.org/maven2/com/google/zxing/
ZXing included only for ease of use.
TODO
See the issue tracker.
Author
Thomas Schaaf ([email protected]). Development was sponsored by komola.
Used by
License
(The MIT License)
Copyright (C) 2012 Thomas Schaaf
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.