@barn/zxing
Advanced tools
Comparing version 0.2.0 to 0.2.1
{ | ||
"name": "@barn/zxing", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "TypeScript port of ZXing open-source, multi-format 1D/2D barcode image processing library.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -38,3 +38,3 @@ ZXing TypeScript | ||
`npm i @odahcam/zxing --save` | ||
`npm i @barn/zxing --save` | ||
@@ -212,3 +212,3 @@ To use from JS you need to include what you need from `build/umd` folder (for example `zxing.min.js`). | ||
`npm i @odahcam/zxing --save` | ||
`npm i @barn/zxing --save` | ||
@@ -218,3 +218,3 @@ And then include directly the classes files you need, for example: | ||
```javascript | ||
import { BrowserQRCodeReader, VideoInputDevice } from '@odahcam/zxing'; | ||
import { BrowserQRCodeReader, VideoInputDevice } from '@barn/zxing'; | ||
``` | ||
@@ -227,3 +227,3 @@ | ||
`npm i @odahcam/zxing --save` | ||
`npm i @barn/zxing --save` | ||
@@ -230,0 +230,0 @@ To use in node you will need to provide an implementation of [`LuminanceSource`](https://github.com/odahcam/zxing-ts/blob/master/src/core/LuminanceSource.ts) for an image. A starting point is [`SharpImageLuminanceSource`](https://github.com/odahcam/zxing-ts/blob/master/src/test/core/SharpImageLuminanceSource.ts) from tests that is using [sharp image processing](https://github.com/lovell/sharp) node library. |
3465060