Socket
Socket
Sign inDemoInstall

@titanium/scandit

Package Overview
Dependencies
570
Maintainers
2
Versions
45
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @titanium/scandit

⭐ Axway Amplify module using Scandit SDK Barcode Scanner with Appcelerator Titanium SDK


Version published
Weekly downloads
11
decreased by-26.67%
Maintainers
2
Created
Weekly downloads
 

Readme

Source

Axway Amplify End-of-Life Announcement

👇   See API FAQ below   👇

RIP Axway Amplify Titanium (2010 - 2022)

🪦   RIP Axway Amplify Titanium (2010 - 2022)

🪦   RIP Axway Amplify Cloud Services (2012 - 2022)


🛑    All products affected by the announcements will not be supported by Axway effective their EOL dates in 2022.
Some Open-Source versions of Axway products will live on after End-of-Life (EOL) Axway Amplify product announcements. However, some products are closed-source and will NOT continue after the shut down in 2022.

 

👉    Stay tuned for more info as plans are being made to save the Titanium project and move it under the control of a independent group of developers.

 


API FAQ:

 


 

 

@titanium/scandit

@titanium/scandit Dependabot Status

Scandit SDK Barcode Scanner Module for Titanium Native Mobile Apps

📝 Description

This is a repackaging of the compiled iOS and Android modules for the Scandit SDK for Titanium to allow for installation via npm.

🚀 Getting Started

  1. Install @titanium/scandit in root of project
npm install @titanium/scandit

Obtain SDK API Key

You need to log into your Scandit Account (or create a new account) to obtain your Scandit API Key to use with this module.

https://ssl.scandit.com/account/sdk

Using barcode scanner

const scanditsdk = require('@titanium/scandit');
scanditsdk.appKey = 'YOUR_SCANDIT_API_KEY';

// Only after setting the app key, instantiate the Scandit SDK Barcode Picker view
scanner = scanditsdk.createView({
	top:    0,
	width:  Ti.UI.FILL,
	height: Ti.UI.FILL,
});

// Before calling any other functions on the picker you have to call init()
scanner.init();

/*************************
 * Set various features
 ************************/

scanner.showSearchBar(false);
scanner.setVibrateEnabled(true);
scanner.setBeepEnabled(true);
scanner.setTorchEnabled(true);

// add a tool bar at the bottom of the scan view with a cancel button (iphone/ipad only)
scanner.showToolBar(false);
scanner.setViewfinderSize(0.7, 0.7, 0.6, 0.4);

// Shows/hides viewfinder rectangle and highlighted barcode location in the scan screen UI. [default is true]
scanner.drawViewfinder(true);
// scanner.setViewfinderColor( red, green, blue ); // enterprise-only fea
// setViewfinderDecodedColor( red, green, blue);

// Reduces the area in which barcodes are detected and decoded.
// Must be used in combination with setScanningHotSpot
// If this method is not enabled, barcodes in the full camera preview are detected and decoded.
scanner.restrictActiveScanningArea(true);

	// Changes the location of the spot where the barcode decoder actively scans for barcodes.
// X and Y can be between 0 and 1, where 0/0 corresponds to the top left corner and 1/1 to the bottom right corner.
// The default hotspot is set to 0.5/0.5
scanner.setScanningHotSpot(0.5, 0.5);

// Forces the barcode scanner to always run the 2D decoders (QR,Datamatrix, etc.),
// even when the 2D detector did not detect the presence of a 2D code.
// This slows down the overall scanning speed, but can be useful when your application only tries to read QR codes
scanner.force2dRecognition(false);
scanner.setEan13AndUpc12Enabled(true);
scanner.setEan8Enabled(true);
scanner.set1DScanningEnabled(true);
scanner.setUpceEnabled(true);
scanner.setCode39Enabled(true);
scanner.setCode128Enabled(true);
scanner.setQrEnabled(true);
scanner.set2DScanningEnabled(true);
scanner.setDataMatrixEnabled(true); // enterprise-only feature
scanner.setMaxiCodeEnabled(true); // enterprise-only feature
scanner.setItfEnabled(true); // enterprise-only feature
scanner.setCode25Enabled(true); // enterprise-only feature
scanner.setGS1DataBarLimitedEnabled(true); // enterprise-only feature
scanner.setGS1DataBarExpandedEnabled(true); // enterprise-only feature
scanner.setGS1DataBarEnabled(true); // enterprise-only feature
scanner.setPdf417Enabled(true); // enterprise-only feature
scanner.setRM4SCCEnabled(true); // enterprise-only feature
scanner.setKIXEnabled(true); // enterprise-only
scanner.setMicroPdf417Enabled(true); // enterprise-only
scanner.setCode128Enabled(true); // enterprise-only
scanner.setCode11Enabled(true); // enterprise-only
scanner.setCode93Enabled(true); // enterprise-only
scanner.setCode39Enabled(true); // enterprise-only

// Set callback functions for when scanning succeeds and for when the
// scanning is canceled. This callback is called on the scan engine's
// thread to allow you to synchronously call stopScanning or
// pauseScanning. Any UI specific calls from within this function
// have to be issued through setTimeout to switch to the UI thread
// first.
scanner.setSuccessCallback(e => {
	console.error('scanner.openScanner.setSuccessCallback: entering');
	scanner.stopScanning();

	const upcNumber = e.barcode;
	const upcType = e.symbology;

}


✨Features

iOS: com.mirasense.scanditsdk 5.13.1 Android: com.mirasense.scanditsdk 5.13.1

📚Learn More

📣 Feedback

Have an idea or a comment? Join in the conversation here!

Modules licensed by Scandit AG
Copyright (c) 2018 by Scandit AG

Usage of this module is subject to the Terms of the Service Agreement with Scandit AG (available at http://www.scandit.com/pricing) as well as your Terms of Service agreement with Appcelerator, Inc.

Alloy is developed by Appcelerator and the community and is Copyright © 2012-Present by Appcelerator, Inc. All Rights Reserved.

Alloy is made available under the Apache Public License, version 2. See their license file for more information.

Appcelerator is a registered trademark of Appcelerator, Inc. Titanium is a registered trademark of Appcelerator, Inc. Please see the LEGAL information about using trademarks, privacy policy, terms of usage and other legal information at http://www.appcelerator.com/legal.

Keywords

FAQs

Last updated on 01 Feb 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc