Xamarin.Dynamsoft.Barcode.Android 9.2.10

Suggested Alternatives

Dynamsoft.CaptureVision.Xamarin.Forms

Additional Details

Package no longer supported. Please use package Dynamsoft.CaptureVision.Xamarin.Forms instead.

dotnet add package Xamarin.Dynamsoft.Barcode.Android --version 9.2.10
NuGet\Install-Package Xamarin.Dynamsoft.Barcode.Android -Version 9.2.10
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Xamarin.Dynamsoft.Barcode.Android" Version="9.2.10" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Xamarin.Dynamsoft.Barcode.Android --version 9.2.10
#r "nuget: Xamarin.Dynamsoft.Barcode.Android, 9.2.10"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Xamarin.Dynamsoft.Barcode.Android as a Cake Addin
#addin nuget:?package=Xamarin.Dynamsoft.Barcode.Android&version=9.2.10

// Install Xamarin.Dynamsoft.Barcode.Android as a Cake Tool
#tool nuget:?package=Xamarin.Dynamsoft.Barcode.Android&version=9.2.10

Introduction

Dynamsoft's Barcode Reader SDK enables you to efficiently integrate barcode reading functionality into Web, desktop, or mobile applications using just a few lines of code. The enterprise-class barcode SDK can save you months of development time and extra costs. With Dynamsoft Barcode Reader, developers can create high-speed and reliable barcode scanner software to meet business needs.

What You Should Know About Dynamsoft Barcode SDK

  • alternate text is missing from this package README image
  • alternate text is missing from this package README image

API Reference

https://www.dynamsoft.com/barcode-reader/programming/android

Sample Code

https://www.dynamsoft.com/barcode-reader/resources/code-gallery/

Proguard Configuration for Release

proguard_xamarin.cfg:

-keep class com.dynamsoft.dbr.** { *; }

Release Notes

https://www.dynamsoft.com/barcode-reader/programming/android/release-notes/?ver=latest

Specifications

Highlights

  • Multi-thread barcode processing
  • Reads multiple barcodes in one image
  • Detects barcodes at any orientation and rotation angle
  • Decodes barcodes from out-of-focus, blurred images
  • Reads barcodes from low-quality images with preprocessing

Supported Barcode Types

  • 1D barcodes: Code39, Code93, Code128, Codabar, ITF, EAN13, EAN8, UPCA, UPCE, Code11
  • 2D barcodes: QR Code, DataMatrix, PDF417, Aztec Code, MaxiCode, DotCode, GS1 Composite Code, Patch Code, MSI code
  • Postal Codes: USPS Intelligent Mail, Postnet, Planet, Australian Post, UK Royal Mail

Barcode Reading Results

  • Barcode type
  • Barcode count
  • Barcode value as string
  • Barcode raw data as bytes
  • Barcode bounding rectangle
  • Coordinate of four corners
  • Page number

Supported Image Source Types

  • Bmp, jpg, png, and tiff image files; multi-page tiff also supported
  • Windows DIB and .NET bitmap
  • Black/white, grayscale or color

Supported Platforms

Windows, Linux, macOS, Android, iOS, Web, Raspberry Pi

Supported Programming Language and Frameworks

  • C/C++, C#, Java, Python, PHP, JavaScript, Objective-C, Swfit, and Kotlin
  • Xamarin, React, and Cordova

More

Product Compatible and additional computed target framework versions.
MonoAndroid monoandroid403 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.2.10 3,178 6/28/2022
9.0.2 1,294 5/26/2022
9.0.0 1,984 3/23/2022
8.9.3 1,372 3/2/2022
8.9.1 1,301 12/29/2021
8.9.0 1,163 12/20/2021
8.8.2 1,283 10/25/2021
8.8.1 1,223 10/22/2021
8.8.0 1,274 10/22/2021
8.6.0 1,379 7/16/2021
8.4.0 2,776 6/9/2021
8.2.0 1,432 3/17/2021
8.1.2 1,739 1/22/2021
8.1.1.1 1,371 1/19/2021
8.1.1 1,393 1/15/2021
8.1.0 1,513 1/12/2021
8.0.0 1,541 11/18/2020
7.6.0 1,381 9/1/2020
7.5.0 1,436 7/23/2020
7.4.0 1,464 4/16/2020
7.3.0 1,481 1/2/2020
7.2.2 1,353 11/14/2019
7.2.1 1,385 11/13/2019
7.2.0 1,373 10/8/2019
7.1.0 1,526 8/15/2019
7.0.0 1,453 7/11/2019
6.5.2 1,471 5/28/2019
6.5.1 1,488 4/17/2019
6.5.0 1,343 2/28/2019
6.4.1 1,801 12/6/2018
6.4.0 2,799 10/17/2018
6.3.1 3,180 8/22/2018

Version Highlights
     
     Barcode boundary-seeking algorithm is refactored to improve stability.
     Pharmacode decoding is optimized to improve accuracy.
     The function of device-alias is added to allow users to give each device a readable name. For end-users and administrators, this makes it more friendly to distinguish between devices about license usage statistics.
     
     Changelog
     New
     Added a new method setDeviceFriendlyName to set a human-readable name that identifies the device.
     Added a new interface ImageSource. It act as an adapter that transfer image data from external resources to the format that can be recognized by the Barcode Reader. The following APIs are available for users to reduce the code complexity when working with ImageSource:
       setImageSource: Set ImageSource as the source of image data.
       startScanning: Start obaining image from the ImageSource continuously.
       stopScanning: Stop obtaining image from the ImageSource.
       TextResultListener: The protocol that includes a callback method for users to receive decoded barcode results when decoding from the ImageSource.
     Added a new method minImageReadingInterval to set a minimum interval between two barcode decoding.