Aspose.BarCode 20.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aspose.BarCode --version 20.2.0
NuGet\Install-Package Aspose.BarCode -Version 20.2.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="20.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Aspose.BarCode --version 20.2.0
#r "nuget: Aspose.BarCode, 20.2.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=20.2.0

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

Barcode Generation & Recognition Library for .NET Applications

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 customization the barcode's appearance including bar height, color, margins, borders and so on. While scanning for barcode, developers can specify area where a barcode can be found as well as direct the engine to look for rotated barcodes.

Barcode API Features

Public API & Backward Incompatible Changes in Version 20.2.0

  • added property Aspose.BarCode.Generation.BarcodeParameters.BarColor

  • added property Aspose.BarCode.Generation.BaseGenerationParameters.AutoSizeMode

  • added property Aspose.BarCode.Generation.BaseGenerationParameters.ImageHeight

  • added property Aspose.BarCode.Generation.BaseGenerationParameters.ImageWidth

  • added method Aspose.BarCode.BarCodeRecognition.Code128DataPortion.ToString

  • added method Aspose.BarCode.BarCodeRecognition.BarCodeReader.ExportToXml(System.IO.Stream)

  • added method Aspose.BarCode.BarCodeRecognition.BarCodeReader.ImportFromXml(System.IO.Stream)

  • marked obsolete property Aspose.BarCode.Generation.BarcodeParameters.ForeColor

  • marked obsolete property Aspose.BarCode.Generation.BarcodeParameters.AutoSizeMode

  • marked obsolete property Aspose.BarCode.Generation.BarcodeParameters.BarCodeWidth

  • marked obsolete property Aspose.BarCode.Generation.BarcodeParameters.BarCodeHeight

Barcode Symbologies

Numeric Only: EAN13, EAN8, UPCA, UPCE, ISBN, ISMN, ISSN, Interleaved2of5, Standard2of5, MSI, Code11, Codabar, Postnet, Planet, EAN14(SCC14), SSCC18, ITF14, IATA2of5, DatabarOmniDirectional, DatabarStackedOmniDirectional, DatabarExpandedStacked, DatabarStacked, DatabarLimited, DatabarTruncated Alpha-Numeric: GS1Code128, Code128, Code39 Extended, Code39 Standard, Code93 Extended, Code93 Standard, Australia Post, Italian Post 25, Matrix2of5, DatabarExpanded. PatchCode 2D Symbologies: PDF417, DataMatrix, Aztec, QR, MicroQR, GS1DataMatrix, Code16K, CompactPDF417, Swiss QR (QR Bill)

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, and .NET core. In short, you can develop apps using Aspose.BarCode for .NET where the .NET framework is available.

Getting Started with Aspose.BarCode for .NET

Are you ready to give Aspose.BarCode for .NET a try? Simply execute Install-Package Aspose.BarCode from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.BarCode for .NET and want to upgrade the version, please execute Update-Package Aspose.BarCode to get the latest version.

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. 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);

Product Page | Documentation | API Reference | Code Examples | Blog | Free Support | Temporary License

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net20 is compatible.  net30 is compatible.  net35 is compatible.  net35-client is compatible.  net40 is compatible.  net40-client is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 2.0

    • No dependencies.
  • .NETFramework 3.0

    • No dependencies.
  • .NETFramework 4.0

    • No dependencies.
  • .NETFramework 4.5

    • No dependencies.
  • .NETFramework 4.6

    • No dependencies.
  • .NETFramework 4.6.1

    • No dependencies.
  • .NETFramework 4.6.2

    • No dependencies.
  • .NETFramework 4.7

    • No dependencies.
  • .NETFramework 4.7.1

    • No dependencies.
  • .NETFramework 4.7.2

    • No dependencies.
  • .NETStandard 2.0

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
24.2.0 2,392 2/29/2024
24.1.0 7,548 1/21/2024
23.12.0 6,778 12/27/2023
23.11.0 4,494 12/7/2023
23.10.0 37,771 10/20/2023
23.9.0 12,132 9/22/2023
23.8.1 13,003 8/24/2023
23.7.0 18,165 7/22/2023
23.6.1 829 8/9/2023
23.5.1 1,201 8/9/2023
23.4.0 18,806 4/20/2023
23.3.1 9,070 4/6/2023
23.1.0 64,598 1/22/2023
22.12.0 19,601 12/18/2022
22.11.0 25,480 11/18/2022
22.10.0 106,367 10/21/2022
22.9.0 30,874 9/22/2022
22.8.0 29,986 8/22/2022
22.7.0 12,093 7/26/2022
22.6.0 64,901 6/25/2022
22.5.0 17,632 5/20/2022
22.4.0 15,535 4/29/2022
22.3.0 27,408 3/26/2022
22.2.0 56,732 2/26/2022
22.1.0 37,435 1/26/2022
21.12.0 56,364 12/19/2021
21.11.0 25,264 11/18/2021
21.10.0 22,037 10/19/2021
21.9.0 20,152 9/17/2021
21.8.0 29,871 8/20/2021
21.7.0 35,886 7/18/2021
21.6.0 13,870 6/20/2021
21.5.0 13,640 5/19/2021
21.4.0 28,435 4/20/2021
21.3.0 44,615 3/18/2021
21.2.0 26,351 2/17/2021
21.1.0 20,077 1/22/2021
20.12.0 31,202 12/17/2020
20.11.0 54,576 11/19/2020
20.10.0 125,008 10/23/2020
20.9.0 24,697 9/25/2020
20.8.0 8,621 8/27/2020
20.7.0 13,506 7/28/2020
20.6.0 23,542 6/26/2020
20.4.0 35,099 4/23/2020
20.3.0 12,970 3/24/2020
20.2.0 20,280 2/23/2020
20.1.0 9,768 1/24/2020
19.12.0 42,505 12/23/2019
19.11.0 13,974 11/19/2019
19.10.0 16,791 10/23/2019
19.9.0 39,737 9/17/2019
19.8.0 10,757 8/15/2019
19.7.0 2,772 7/25/2019
19.6.1 2,094 7/6/2019
19.5.0 4,730 5/24/2019
19.4.0 111,913 4/11/2019
19.3.0 5,661 3/19/2019
19.2.1 2,862 3/15/2019
19.1.1 2,893 3/15/2019
18.12.1 6,212 3/15/2019
18.11.1 1,341 3/15/2019
18.10.1 1,421 3/15/2019
18.9.1 1,559 3/15/2019
18.8.0 7,733 8/30/2018
18.7.0 6,315 7/17/2018
18.6.0 7,483 6/14/2018
18.5.0 3,799 5/18/2018
18.4.0 5,791 5/2/2018
18.3.0 14,371 3/20/2018
18.2.0 13,850 2/18/2018
18.1.0 14,844 1/10/2018
17.12.0 18,405 12/4/2017
17.11.0 3,881 11/8/2017
17.10.0 2,220 10/19/2017
17.9.0 2,296 9/28/2017
17.8.0 4,050 8/31/2017
17.7.0 3,652 7/27/2017
17.6.0 3,540 7/3/2017
17.5.0 2,759 6/1/2017
17.4.0 14,642 5/1/2017
17.3.0.1 3,222 4/6/2017
17.3.0 3,631 3/30/2017
17.2.0 4,533 3/1/2017
17.1.0 4,625 2/4/2017
16.12.1 3,946 12/13/2016
16.12.0 2,110 12/7/2016
16.11.0 8,028 11/4/2016
16.10.0 16,208 10/5/2016
8.2.1 11,391 9/5/2016
8.2.0 2,045 8/27/2016
8.1.0 10,355 7/20/2016
8.0.0 10,742 6/13/2016
7.9.0 38,713 4/25/2016
7.8.0 2,648 3/28/2016
7.7.0 9,260 2/1/2016
7.6.1 93,820 12/24/2015
7.6.0 2,033 12/16/2015
7.5.0 12,045 11/24/2015
7.4.0 2,440 10/23/2015
7.3.0 2,999 9/22/2015
7.2.0 28,956 8/20/2015
7.1.0 26,026 7/17/2015
7.0.0 3,056 6/9/2015
6.9.0 16,674 4/24/2015
6.8.0 8,158 2/6/2015
6.7.0 2,403 12/31/2014
6.6.0 3,892 11/12/2014
6.5.0 2,690 9/8/2014
6.4.0 4,618 7/3/2014
6.3.0 4,530 5/31/2014
6.2.0 3,093 4/30/2014
6.1.0 4,340 3/19/2014
6.0.0 8,124 12/31/2013
5.9.0 2,683 11/29/2013
5.8.0 22,034 10/23/2013
5.7.0 2,729 9/2/2013
5.6.2 2,752 7/29/2013
5.6.1.1 2,091 7/18/2013
5.6.1 2,493 7/17/2013
5.6.0 2,330 7/9/2013
5.5.0 2,792 4/3/2013
5.4.0 4,357 2/5/2013
5.3.0 24,440 12/28/2012
5.2.0 2,602 11/20/2012
5.1.0 8,653 10/8/2012
5.0.0 2,401 8/29/2012
4.9.0 2,366 7/19/2012
4.8.0 2,542 6/4/2012
4.7.0 2,291 4/18/2012
4.6.0 3,910 2/25/2012
4.5.0.1 2,288 2/16/2012
4.5.0 38,045 1/24/2012