Ecia.Barcode.Parser 1.0.4

dotnet add package Ecia.Barcode.Parser --version 1.0.4                
NuGet\Install-Package Ecia.Barcode.Parser -Version 1.0.4                
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="Ecia.Barcode.Parser" Version="1.0.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ecia.Barcode.Parser --version 1.0.4                
#r "nuget: Ecia.Barcode.Parser, 1.0.4"                
#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 Ecia.Barcode.Parser as a Cake Addin
#addin nuget:?package=Ecia.Barcode.Parser&version=1.0.4

// Install Ecia.Barcode.Parser as a Cake Tool
#tool nuget:?package=Ecia.Barcode.Parser&version=1.0.4                

Ecia.Barcode.Parser

Ecia.Barcode.Parser provides the ability to easily parse ECIA barcode strings.

Disclaimer: This package is not an official ECIA product and is not endorsed or affiliated with ECIA. It is an independent implementation for parsing ECIA barcode strings.

Install Package

NuGet

Available on NuGet.

Install with the dotnet CLI: dotnet add package Ecia.Barcode.Parser, or through the NuGet Package Manager in Visual Studio.

Usage

See the sample app for a basic example!

Getting an instance of the Parser

Dependency Injection

var appBuilder = WebApplication.CreateBuilder(args);
appBuilder.Services.AddTransient<IEciaBarcodeParser, EciaBarcodeParser>();

Without DI

var parser = new EciaBarcodeParser();
Parsing a Barcode string
var barcodeString = "some ecia barcode string";
var parser = new EciaBarcodeParser();
ParsedBarcode parsedBarcode = parser.ParseBarcode(barcodeString);
Basic ECIA compliance validation
ParsedBarcode parsedBarcode = parser.ParseBarcode(barcodeString);
// LabelFormat is used to determine the required identifiers. Omit or use LabelFormat.Unkown when the LabelFormat isn't known!
ValidationResult validationResult = parser.ValidateParsedBarcodeCompliance(parsedBarcode, LabelFormat.PackingSlip);

ECIA Documentation

ECIA 2D barcode documentation EIGP 114.2018

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • 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
1.0.4 102 8/30/2024