npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

aplimovil-plugin-scandit

v4.7.1

Published

Scandit Barcode Scanner plugin with SDK included.

Downloads

9

Readme

BarcodeScannerPlugin

Cross platform Phonegap/Cordova Plugin of the Scandit Barcode Scanner SDK for iOS and Android

Follow the detailed instructions below to add a high-performance barcode scanner to your app in 5 min.

If you don't have a Phonegap app yet, we will show you how to generate a sample app below.

Scandit Barcode Scanner SDK Plugin Integration via the Cordova Command Line Interface (CLI)

The easiest way to install the Scandit Barcode Scanner plugin into your Phonegap/Cordova project is to use the Cordova CLI.

  • Install Cordova CLI if it is not already installed.

  • Sign up and download the Scandit Barcode Scanner SDK Cordova Plugins for iOS and Android from your Scandit account. Unzip the zip to a folder of your choice.

  • Generate a sample Cordova project or use your existing Cordova project

To generate a sample project, use the following command line commands:

	cordova create helloworld
	cd hello world
	cordova platform add ios
	cordova platform add android
        cordova plugin add  <path to downloaded,unzipped ScanditSDK Plugin for Phonegap/Cordova>
  • Start using the Scandit Barcode Scanner SDK in your html code

    • Get the app key from your Scandit account
    • Invoke the Scandit Barcode Scanner by invoking the cordova.exec() function with the following parameters:

    cordova.exec(function(success), function(cancel), "ScanditSDK", "scan", ["ENTER YOUR APP KEY HERE",{}]);

  • Important(!!!):

    • if you decide against using the packaged zip with the Scandit Phonegap/Cordova plugin from the downloads page of your Scandit account and use the github src of the plugin instead (not recommended!), you will need to copy the libraries and resources from the native Scandit SDK builds for iOS and Android to the locations specified in the plugins.xml file.

Sample HTML + JS

Fullscreen Scanner

<!DOCTYPE html>
<html>
    <!--
     #
     # Licensed to the Apache Software Foundation (ASF) under one
     # or more contributor license agreements.  See the NOTICE file
     # distributed with this work for additional information
     # regarding copyright ownership.  The ASF licenses this file
     # to you under the Apache License, Version 2.0 (the
     # "License"); you may not use this file except in compliance
     # with the License.  You may obtain a copy of the License at
     #
     # http://www.apache.org/licenses/LICENSE-2.0
     #
     # Unless required by applicable law or agreed to in writing,
     # software distributed under the License is distributed on an
     # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     #  KIND, either express or implied.  See the License for the
     # specific language governing permissions and limitations
     # under the License.
     #
     -->
    <head>
        <meta charset="utf-8" />
        <meta name="format-detection" content="telephone=no" />
        <meta name="msapplication-tap-highlight" content="no" />
        <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
        <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
        <link rel="stylesheet" type="text/css" href="css/index.css" />
        <title>Scandit Barcode Scanner</title>
    </head>
    <body onload="onBodyLoad()" style="background: url(img/ScanditSDKDemo-Splash.png) no-repeat;background-size: 100%;background-color: #000000">
        <script type="text/javascript" src="cordova.js"></script>
        <script type="text/javascript" src="js/index.js"></script>
        <script type="text/javascript">
            function onBodyLoad() {
                document.addEventListener("deviceready", onDeviceReady, false);
            }

            function success(resultArray) {
                alert("Scanned " + resultArray[0] + " code: " + resultArray[1]);

            	// NOTE: Scandit SDK Phonegap Plugin Versions 1.* for iOS report
            	// the scanning result as a concatenated string.
            	// Starting with version 2.0.0, the Scandit SDK Phonegap
            	// Plugin for iOS reports the result as an array
            	// identical to the way the Scandit SDK plugin for Android reports results.

            	// If you are running the Scandit SDK Phonegap Plugin Version 1.* for iOS,
            	// use the following approach to generate a result array from the string result returned:
            	// resultArray = result.split("|");
            }

            function failure(error) {
                alert("Failed: " + error);
            }

            function scan() {
                // See below for all available options.
                cordova.exec(success, failure, "ScanditSDK", "scan",
                             ["ENTER YOUR APP KEY HERE",
                              {"beep": true,
                              "code128" : false,
                              "dataMatrix" : false}]);
            }

            app.initialize();
        </script>

        <div align="center" valign="center">
            <input type="button" value="scan" onclick="scan()" style="margin-top: 230px; width: 100px; height: 30px; font-size: 1em"/>
        </div>
    </body>
</html>

Subview Scanner (Scaled and Cropped)

When adding the scanner as a subview we need to additionally take care of the lifecycle events of the app. As we only need to do this for Android we have to access the device object which is available through an official plugin. Add it the following way:

cordova plugin add org.apache.cordova.device
<!DOCTYPE html>
    <!--
    #
    # Licensed to the Apache Software Foundation (ASF) under one
    # or more contributor license agreements.  See the NOTICE file
    # distributed with this work for additional information
    # regarding copyright ownership.  The ASF licenses this file
    # to you under the Apache License, Version 2.0 (the
    # "License"); you may not use this file except in compliance
    # with the License.  You may obtain a copy of the License at
    #
    # http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing,
    # software distributed under the License is distributed on an
    # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    #  KIND, either express or implied.  See the License for the
    # specific language governing permissions and limitations
    # under the License.
    #
    -->
    <head>
        <meta charset="utf-8" />
        <meta name="format-detection" content="telephone=no" />
        <meta name="msapplication-tap-highlight" content="no" />
        <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
        <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
        <link rel="stylesheet" type="text/css" href="css/index.css" />
        <title>Scandit Barcode Scanner</title>
    </head>
    <body>
        <script type="text/javascript" src="cordova.js"></script>
        <script type="text/javascript" src="js/index.js"></script>
        <script type="text/javascript">

            function success(resultArray) {
                alert("Scanned " + resultArray[0] + " code: " + resultArray[1]);

                // NOTE: Scandit SDK Phonegap Plugin Versions 1.* for iOS report
                // the scanning result as a concatenated string.
                // Starting with version 2.0.0, the Scandit SDK Phonegap
                // Plugin for iOS reports the result as an array
                // identical to the way the Scandit SDK plugin for Android reports results.

                // If you are running the Scandit SDK Phonegap Plugin Version 1.* for iOS,
                // use the following approach to generate a result array from the string result returned:
                // resultArray = result.split("|");
            }

            function failure(error) {
                alert("Failed: " + error);
            }

            function scan() {
                // See below for all available options.
                cordova.exec(success, failure, "ScanditSDK", "scan",
                             ["ENTER YOUR APP KEY HERE",
                              {"beep": true,
                               "code128" : false,
                               "dataMatrix" : false,
                               "codeDuplicateFilter" : 1000,
                               "continuousMode" : true,
                               "portraitMargins" : "0/0/0/200"}]);
            }

            function stop() {
                cordova.exec(null, null, "ScanditSDK", "stop", []);
                cordova.exec(null, null, "ScanditSDK", "resize",
                             [{"portraitMargins" : "0/0/0/400", "animationDuration" : 0.5,
                               "viewfinderSize" : "0.8/0.2/0.6/0.4"}]);
            }

            function start() {
                cordova.exec(null, null, "ScanditSDK", "start", []);
                cordova.exec(null, null, "ScanditSDK", "resize",
                             [{"portraitMargins" : "0/0/0/200", "animationDuration" : 0.5,
                               "viewfinderSize" : "0.8/0.4/0.6/0.4"}]);
            }

            function cancel() {
                cordova.exec(null, null, "ScanditSDK", "cancel", []);
            }

            // Since under Android the plugin is no longer in its own Activity we have to handle
            // the pause and resume lifecycle events ourselves.
            document.addEventListener("pause", onPause, false);
            document.addEventListener("resume", onResume, false);

            function onPause() {
                // Only stop the scanner under Android, under iOS it is automatically stopped.
                if (device.platform == "Android") {
                    cordova.exec(null, null, "ScanditSDK", "stop", []);
                }
            }

            function onResume() {
                // Only start the scanner under Android, under iOS it is automatically restarted.
                if (device.platform == "Android") {
                    cordova.exec(null, null, "ScanditSDK", "start", []);
                }
            }

            app.initialize();
        </script>

        <div>
            <input type="button" value="scan" onclick="scan()" style="position: absolute; bottom: 80px; left: 15%; width: 30%; height: 30px; font-size: 1em"/>
            <input type="button" value="cancel" onclick="cancel()" style="position: absolute; bottom: 80px; right: 15%; width: 30%; height: 30px; font-size: 1em"/>
            <input type="button" value="stop" onclick="stop()" style="position: absolute; bottom: 30px; left: 15%; width: 30%; height: 30px; font-size: 1em"/>
            <input type="button" value="restart" onclick="start()" style="position: absolute; bottom: 30px; right: 15%; width: 30%; height: 30px; font-size: 1em"/>
        </div>

    </body>
</html>

Changelog

Scandit SDK Phonegap/Cordova Plugin for iOS and Android (4.7.0) - TBD

  • upgraded to native ScanditSDK iOS/Android 4.7.0

  • Added the option to display the scanner as a subview (scaled/cropped)

  • Added new functions to cancel, pause, resume, stop, start and resize the scanner

Scandit SDK Phonegap/Cordova Plugin for iOS and Android (4.4.1) - March 17th 2015

  • upgraded to native Scandit SDK iOS/Android 4.4.1 The new features include:

    • New glare compensation algorithm - Scandit 4.4 significantly improves the scanning performance in the presence of glare (and shadows).

    • Inverted QR code support (white QR codes on a dark background) - can be enabled via an API method.

    • Significantly improved performance with damaged barcodes (worn, weak print, ink spread)

    • Reduced the likelihood of false positive barcodes with challenging codes (e.g. with very blurry, ink spread)

    • Better blurry decoding of UPC-E and ITF barcodes

    • Release Notes of native Scandit SDK 4.4.1

Scandit SDK Phonegap/Cordova Plugin for iOS and Android (4.2.0) - Oct 30st 2014

  • upgraded to Scandit SDK for iOS 4.2.2 and Scandit SDK for Android 4.2.2 (see release notes in download section of your Scandit SDK for details)

  • added continuous mode to our Cordova plugins for iOS and Android where multiple barcodes can be scanned in sequence without closing the camera after each scan. This mode can be enabled when the scan function is invoked. Thanks to Loïc Mahieu for the contribution of the continuous mode to the Cordova iOS plugin.

Scandit SDK Phonegap/Cordova Plugin for iOS and Android (4.1.0) - Aug 21st 2014

Scandit SDK Phonegap/Cordova Plugin for iOS and Android (4.0.1) - May 21st 2014

Scandit SDK Phonegap/Cordova Plugin for iOS and Android (4.0.0beta1) - March 31st 2014

Scandit SDK Phonegap/Cordova Plugin for iOS and Android (2.3.0) - November 26th 2013

Scandit SDK Phonegap Plugin for iOS and Android (2.2.0) - September 30th 2013

  • upgraded to Scandit SDK for iOS 3.1.1 and Scandit SDK for Android 3.5.1 (see release notes in download section of your Scandit SDK for details)

Scandit SDK Phonegap Plugin for iOS (2.1.0) and Android (1.2.0) - August 6th 2013

  • support for Phonegap/Cordova 3.0

  • upgraded to Scandit SDK 3.0.4 for iOS (for details see release notes in download section of your Scandit SDK account), Android version of plugin still uses Scandit SDK 3.3.1 for Android

Scandit SDK Phonegap Plugin 2.0.1 for iOS only - June 17th 2013

  • upgraded to Scandit SDK 3.0.3 for iOS which is a new bug fix release (see release notes of native iOS version for details)

Scandit SDK Phonegap Plugin 2.0.0 for iOS only - May 11th 2013

  • upgraded to new Scandit SDK 3.0.1 for iOS which comprises various new features: full screen scanning, improved autofocus management, better scan performance and robustness, new cleaner scan screen interface with the option to add a button to switch cameras and new symbologies (PDF417 beta and MSI-Plessey).

  • IMPORTANT: updated Scandit SDK Phonegap Plugin API to reflect updates in Scandit SDK 3.0.1 for iOS. This includes a number of new API options (see below), a number of options have also disappeared.

  • harmonized return results of Android and iPhone Plugin. In previous versions, the iOS Plugin would return a string, while the Android Plugin would return an array. Starting with Scandit SDK Phonegap Plugin for iOS 2.0.0, the iOS Plugin will also return an array.

Scandit SDK Phonegap Plugin 1.1.0 for Android & iOS - April 2nd 2013

  • upgraded to native Scandit SDK 2.2.7 for iOS and 3.3.1 for Android

  • includes support PLUGMAN

  • Fixed a bug that would freeze and stop the modal view from closing.

  • Scandit SDK Phonegap Plugin for Android now also supports barcode scanning in landscape mode.

  • Minor changes to ScanditSDKActivity.java

API for Scandit SDK Phonegap Plugin iOS and Android

See http://www.scandit.com/support for more information

License

  • This plug-in is released under the Apache 2.0 license: http://www.apache.org/licenses/LICENSE-2.0

Questions? Contact [email protected].