/BitmapDataQRCodeScanner

Flash AIR Native Extension: QRCode reader/decoder which accept BitmapData, therefore you can design your own scanner UI, adding overlay image, without launch fullscreen native Camera UI

Primary LanguageC

BitmapDataQRCodeScanner (ANE)

Flash AIR Native Extension: QRCode reader/decoder which accept BitmapData, therefore you can design your own scanner UI, adding overlay image, without launch fullscreen native Camera UI

Setup in application.xml

for Android, include the followings inside <android><manifestAdditions>...</manifestAdditions></android>

<uses-permission android:name="android.permission.CAMERA"/>
<uses-feature android:name="android.hardware.camera" />
for both iOS and Android, include the followings inside <extensions>...</extensions>
<extensionID>com.kcly.ane.bitmapdataqrcodescanner</extensionID>
for Flash, add this swc
com.kcly.ane.bitmapdataqrcodescanner.swc

Usage

import com.kcly.ane.bitmapdataqrcodescanner.Scanner;
import com.kcly.ane.bitmapdataqrcodescanner.ScannerEvent;
...

scanner = new Scanner();
scanner.addEventListener(ScannerEvent.SCAN, onScanFound);
...

scanner.scan(bmpData);

...

private function onScanFound(evt:ScannerEvent):void {
 trace ('onScanFound: ', evt.data);
}

Note

If you want a continous scanning, you can use Enterframe, setInterval, Timer whatever you like to call scanner.scan(bmpData)

Credit

Native Extension template forked from https://github.com/saumitrabhave/qr-zbar-ane