Aspose.BarCode 23.1.0

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

// Install Aspose.BarCode as a Cake Tool
#tool nuget:?package=Aspose.BarCode&version=23.1.0

Barcode Generation & Recognition Library for .NET Apps

Nuget Nuget GitHub banner

Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License

Barcode Library for .NET

Aspose.BarCode for .NET doesn't just create or recognize barcodes but it provides a complete framework to control almost everything about barcodes. Developers can customize the barcode's appearance like bar height, colors, margins, borders, row/columns count and interpolation modes, as well as barcode generation properties like symbol mode encodings, error correction modes, ECI modes or special barcode metadata. While scanning for barcodes, developers can specify the area/areas where a barcode can be found. Moreover, scanning engine can be optimized for better barcode reading quality or speed with variety of options, which allows to recognize strongly corrupted barcodes.

Directory Description
Demos Source code for live demos hosted at https://products.aspose.app/barcode/family.
Examples A collection of .NET examples that help you learn the product features
Plugins Visual Studio Plugins related to Aspose.BarCode for .NET.
ReportingServices Source code of examples and utilities for Aspose.BarCode for Reporting Services

Demo applications

Barcode API

Supported Symbologies for Barcode Generation & Recognition

The following symbologies are supported for generation and recognition by Aspose.BarCode engine:

  • 1D: Code 11, Code 128, Code 32, Code 39, Code 93, Codabar, Code 16K, CodablockF, Databar OmniDirectional, Databar Stacked OmniDirectional, DatabarLimited, DatabarTruncated, Databar Stacked, Databar Expanded, Databar Expanded Stacked, EAN 13, EAN 14, EAN 8, GS1 CodablockF, GS1 Code 128, IATA 2 of 5, Italian Post 25, Interleaved 2 of 5, ISBN ISMN, ISSN, ITF6, ITF 14, Matrix 2 of 5, MSI, OPC, PatchCode, Pharmacode, PZN, SSCC 14, SSCC 18, Standard 2 of 5, EAN 5, EAN 2, UPC A, UPC E, UpcaGs1DatabarCoupon, VIN.

  • 2D: Aztec, Compact PDF 417, Data Matrix, DotCode, GS1 Data Matrix, GS1 QR, MaxiCode, Macro PDF 417, Micro PDF 417, PDF 417, QR, MicroQR, Swiss QR.

  • Postal: Australia Post, AustralianPosteParcel, Deutsche Post Identcode, Deutsche Post Leticode, Planet, Postnet, RM4SCC, SingaporePost, SwissPostParcel, USPS OneCode.

Supported Symbologies for Barcode Recognition Only

  • MicrE13B

Barcode Generation & Recognition Formats

Images: JPEG, TIFF, PNG, BMP, GIF, EXIF

Save BarCode Labels As

Images: EMF, SVG

Platform Independence

Aspose.BarCode for .NET can easily be used in any .NET 32-bit or 64-bit application, including, WinForms, WPF, ASP.NET, Mono, Xamarin, UWP and .NET core. In short, you can develop apps using Aspose.BarCode for .NET where the .NET framework is available.

Get Started

Are you ready to give Aspose.BarCode for .NET a try? Simply add Aspose.BarCode to your project references as Nuget package. If you have some difficulties with this, our examples help you to manage with this.

Generate a Barcode Label with Code128

Try the following snippet to see how Aspose.BarCode API performs in your environment or check the GitHub Repository for other common usage scenarios.

// instantiate object and set different barcode properties
BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Code128, "1234567");
generator.Parameters.Barcode.XDimension.Millimeters = 1f;

// save the image to your system and set its image format to Jpeg
generator.Save(dir + "output.jpg", BarCodeImageFormat.Jpeg);

Hide Barcode Text from the PNG Label via C# Code

Aspose.BarCode for .NET allows you to customize various properties of barcodes, such as borders, color, type, bar height as well as barcode text. The following example shows, how simple it is to hide the barcode text using C#.

string codeText = "This text is hidden.\n" + "This text is hidden.\n";;

// instantiate barcode object and set CodeText, Symbology , and  CodeLocation
BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DataMatrix, codeText);
generator.Parameters.Barcode.CodeTextParameters.Location = CodeLocation.None;
generator.Save(dir + "output.png", BarCodeImageFormat.Png);

Recognize Barcode from File via C# Code

The following example demonstrates how to scan a picture of a barcode image using Aspose.BarCode

// Read file from directory with DecodeType.EAN13
using (BarCodeReader reader = new BarCodeReader(dataDir + "Scan.jpg", DecodeType.EAN13))
{
    foreach (BarCodeResult result in reader.ReadBarCodes())
    {
        // Read symbology type and code text
        Console.WriteLine("Symbology Type: " + result.CodeType);
        Console.WriteLine("CodeText: " + result.CodeText);
    }
}

Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net20 net35 net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Aspose.BarCode:

Package Downloads
Aspose.Total

Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications.

Tharga.Reporter

Create and manage XML templates for print and PDF output.

Ppr.DocumentGenerator

Вспомогательная инфраструктура для генерации документов на базе сервисов Aspose

TDocumentGeneration

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Aspose.BarCode:

Repository Stars
aspose-words/Aspose.Words-for-.NET
Aspose.Words for .NET examples, plugins and showcases
Version Downloads Last updated
23.1.0 10,467 1/22/2023
22.12.0 6,697 12/18/2022
22.11.0 8,191 11/18/2022
22.10.0 59,465 10/21/2022
22.9.0 13,717 9/22/2022
22.8.0 19,404 8/22/2022
22.7.0 7,143 7/26/2022
22.6.0 38,903 6/25/2022
22.5.0 12,621 5/20/2022
22.4.0 10,644 4/29/2022
22.3.0 17,793 3/26/2022
22.2.0 36,713 2/26/2022
22.1.0 24,734 1/26/2022
21.12.0 39,626 12/19/2021
21.11.0 16,008 11/18/2021
21.10.0 14,544 10/19/2021
21.9.0 13,931 9/17/2021
21.8.0 19,191 8/20/2021
21.7.0 27,209 7/18/2021
21.6.0 9,261 6/20/2021
21.5.0 8,394 5/19/2021
21.4.0 18,311 4/20/2021
21.3.0 34,209 3/18/2021
21.2.0 15,318 2/17/2021
21.1.0 17,781 1/22/2021
20.12.0 27,284 12/17/2020
20.11.0 35,457 11/19/2020
20.10.0 55,738 10/23/2020
20.9.0 16,002 9/25/2020
20.8.0 6,484 8/27/2020
20.7.0 11,489 7/28/2020
20.6.0 19,907 6/26/2020
20.4.0 27,483 4/23/2020
20.3.0 10,808 3/24/2020
20.2.0 10,024 2/23/2020
20.1.0 5,250 1/24/2020
19.12.0 37,540 12/23/2019
19.11.0 11,979 11/19/2019
19.10.0 10,344 10/23/2019
19.9.0 32,309 9/17/2019
19.8.0 6,812 8/15/2019
19.7.0 2,093 7/25/2019
19.6.1 1,345 7/6/2019
19.5.0 3,681 5/24/2019
19.4.0 93,206 4/11/2019
19.3.0 4,614 3/19/2019
19.2.1 1,583 3/15/2019
19.1.1 1,675 3/15/2019
18.12.1 5,004 3/15/2019
18.11.1 677 3/15/2019
18.10.1 760 3/15/2019
18.9.1 817 3/15/2019
18.8.0 6,333 8/30/2018
18.7.0 5,221 7/17/2018
18.6.0 5,652 6/14/2018
18.5.0 2,636 5/18/2018
18.4.0 3,832 5/2/2018
18.3.0 9,079 3/20/2018
18.2.0 11,643 2/18/2018
18.1.0 12,712 1/10/2018
17.12.0 15,285 12/4/2017
17.11.0 2,992 11/8/2017
17.10.0 1,526 10/19/2017
17.9.0 1,499 9/28/2017
17.8.0 3,309 8/31/2017
17.7.0 2,876 7/27/2017
17.6.0 2,833 7/3/2017
17.5.0 2,000 6/1/2017
17.4.0 10,665 5/1/2017
17.3.0.1 2,369 4/6/2017
17.3.0 2,595 3/30/2017
17.2.0 3,739 3/1/2017
17.1.0 3,711 2/4/2017
16.12.1 2,980 12/13/2016
16.12.0 1,295 12/7/2016
16.11.0 6,534 11/4/2016
16.10.0 8,534 10/5/2016
8.2.1 9,858 9/5/2016
8.2.0 1,333 8/27/2016
8.1.0 7,034 7/20/2016
8.0.0 7,825 6/13/2016
7.9.0 37,130 4/25/2016
7.8.0 1,655 3/28/2016
7.7.0 6,352 2/1/2016
7.6.1 91,255 12/24/2015
7.6.0 1,309 12/16/2015
7.5.0 8,915 11/24/2015
7.4.0 1,636 10/23/2015
7.3.0 2,090 9/22/2015
7.2.0 27,282 8/20/2015
7.1.0 17,261 7/17/2015
7.0.0 2,280 6/9/2015
6.9.0 13,478 4/24/2015
6.8.0 6,251 2/6/2015
6.7.0 1,713 12/31/2014
6.6.0 3,200 11/12/2014
6.5.0 2,025 9/8/2014
6.4.0 3,582 7/3/2014
6.3.0 3,790 5/31/2014
6.2.0 2,474 4/30/2014
6.1.0 3,310 3/19/2014
6.0.0 6,457 12/31/2013
5.9.0 2,019 11/29/2013
5.8.0 17,175 10/23/2013
5.7.0 2,101 9/2/2013
5.6.2 2,153 7/29/2013
5.6.1.1 1,503 7/18/2013
5.6.1 1,863 7/17/2013
5.6.0 1,723 7/9/2013
5.5.0 2,100 4/3/2013
5.4.0 2,651 2/5/2013
5.3.0 20,846 12/28/2012
5.2.0 1,965 11/20/2012
5.1.0 7,555 10/8/2012
5.0.0 1,760 8/29/2012
4.9.0 1,725 7/19/2012
4.8.0 1,923 6/4/2012
4.7.0 1,699 4/18/2012
4.6.0 3,174 2/25/2012
4.5.0.1 1,659 2/16/2012
4.5.0 36,596 1/24/2012