Aspose.BarCode
20.11.0
Aspose.BarCode for .NET is a robust and reliable barcode generation and recognition component, written in managed C#, it allows developers to quickly and easily add barcode generation and recognition functionality to their Microsoft .NET applications (WinForms, WPF and .NET Core).
Aspose.BarCode for .NET supports most established barcode standards and barcode specifications. It has the ability to export to multiple image formats including: BMP, GIF, JPEG, PNG, TIFF, EMF and SVG.
See the version list below for details.
Install-Package Aspose.BarCode -Version 20.11.0
dotnet add package Aspose.BarCode --version 20.11.0
<PackageReference Include="Aspose.BarCode" Version="20.11.0" />
paket add Aspose.BarCode --version 20.11.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 barcodes, developers can specify the area where a barcode can be found as well as direct the engine to look for rotated barcodes.
Barcode API Features
- Generate & recognize 40+ barcode symbologies with just a few lines of code.
- Read 1D & 2D barcodes at any angle.
- Easily print barcode labels to physical or virtual printers.
- Export barcode as XML.
- Support for barcode supplement data and checksum.
- Optimized code128 encoding.
- Specify the image area to scan the barcode.
- Create device resolution dependent images.
New Features & Enhancements 
- Updated and fixed the UI components.
- Added additional fields to the
Databar
section. - Introduced the
Datamatrix
support for Macro 5 and 6.
Please visit Aspose.BarCode for .NET 20.11 Release Notes for the detailed notes.
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. 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);
Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
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 barcodes, developers can specify the area where a barcode can be found as well as direct the engine to look for rotated barcodes.
Barcode API Features
- Generate & recognize 40+ barcode symbologies with just a few lines of code.
- Read 1D & 2D barcodes at any angle.
- Easily print barcode labels to physical or virtual printers.
- Export barcode as XML.
- Support for barcode supplement data and checksum.
- Optimized code128 encoding.
- Specify the image area to scan the barcode.
- Create device resolution dependent images.
New Features & Enhancements 
- Updated and fixed the UI components.
- Added additional fields to the
Databar
section. - Introduced the
Datamatrix
support for Macro 5 and 6.
Please visit Aspose.BarCode for .NET 20.11 Release Notes for the detailed notes.
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. 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);
Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Release Notes
https://docs.aspose.com/display/barcodenet/Aspose.BarCode+for+.NET+20.11+Release+Notes
Dependencies
-
.NETFramework 2.0
- No dependencies.
-
.NETFramework 3.0
- No dependencies.
-
.NETFramework 3.5
- No dependencies.
-
.NETFramework 3.5 Client
- No dependencies.
-
.NETFramework 4.0
- No dependencies.
-
.NETFramework 4.0 Client
- No dependencies.
-
.NETFramework 4.5
- No dependencies.
-
.NETFramework 4.6
- No dependencies.
-
.NETFramework 4.7
- No dependencies.
-
.NETFramework 4.8
- No dependencies.
-
.NETStandard 2.0
- System.Drawing.Common (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.7.0)
-
.NETStandard 2.1
- System.Drawing.Common (>= 4.7.0)
- System.Text.Encoding.CodePages (>= 4.7.0)
Used By
NuGet packages (4)
Showing the top 4 NuGet packages that depend on Aspose.BarCode:
Package | Downloads |
---|---|
Tharga.Reporter
Create and manage XML templates for print and PDF output.
|
|
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.
|
|
Zny.ServiceClient.Common
微服务调用公共类
|
|
Conholdate.Total
Conholdate.Total for .NET is a complete package to work with a large number of file formats from Microsoft Word, Excel, PowerPoint, Outlook, Project, Visio, Adobe Acrobat, Illustrator, Photoshop, AutoCAD, OpenOffice and many more.
Conholdate.Total for .NET allows you to use any API released under Aspose and GroupDocs for .NET in order to create, convert, read, edit, update and print popular document formats. Moreover, you may view, annotate, watermark, assemble, classify, search, redact, parse, merge and compare documents without needing to install the native applications.
Conholdate.Total for .NET also includes specialized APIs to read and create barcodes, extract text from images using OCR as well as extract human marked data from questioners, surveys, quizzes, MCQ papers and feedback forms.
|
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 History
Version | Downloads | Last updated |
---|---|---|
20.12.0 | 1,039 | 12/17/2020 |
20.11.0 | 3,313 | 11/19/2020 |
20.10.0 | 1,677 | 10/23/2020 |
20.9.0 | 3,189 | 9/25/2020 |
20.8.0 | 2,696 | 8/27/2020 |
20.7.0 | 2,866 | 7/28/2020 |
20.6.0 | 5,536 | 6/26/2020 |
20.4.0 | 8,621 | 4/23/2020 |
20.3.0 | 6,213 | 3/24/2020 |
20.2.0 | 5,118 | 2/23/2020 |
20.1.0 | 2,184 | 1/24/2020 |
19.12.0 | 12,071 | 12/23/2019 |
19.11.0 | 6,929 | 11/19/2019 |
19.10.0 | 2,034 | 10/23/2019 |
19.9.0 | 14,703 | 9/17/2019 |
19.8.0 | 2,341 | 8/15/2019 |
19.7.0 | 1,675 | 7/25/2019 |
19.6.1 | 876 | 7/6/2019 |
19.5.0 | 2,181 | 5/24/2019 |
19.4.0 | 30,895 | 4/11/2019 |
19.3.0 | 2,819 | 3/19/2019 |
19.2.1 | 946 | 3/15/2019 |
19.1.1 | 631 | 3/15/2019 |
18.12.1 | 3,008 | 3/15/2019 |
18.11.1 | 288 | 3/15/2019 |
18.10.1 | 304 | 3/15/2019 |
18.9.1 | 301 | 3/15/2019 |
18.8.0 | 3,274 | 8/30/2018 |
18.7.0 | 3,897 | 7/17/2018 |
18.6.0 | 4,653 | 6/14/2018 |
18.5.0 | 1,404 | 5/18/2018 |
18.4.0 | 1,489 | 5/2/2018 |
18.3.0 | 3,301 | 3/20/2018 |
18.2.0 | 6,752 | 2/18/2018 |
18.1.0 | 11,235 | 1/10/2018 |
17.12.0 | 8,573 | 12/4/2017 |
17.11.0 | 2,352 | 11/8/2017 |
17.10.0 | 996 | 10/19/2017 |
17.9.0 | 956 | 9/28/2017 |
17.8.0 | 2,699 | 8/31/2017 |
17.7.0 | 2,260 | 7/27/2017 |
17.6.0 | 1,625 | 7/3/2017 |
17.5.0 | 1,222 | 6/1/2017 |
17.4.0 | 5,639 | 5/1/2017 |
17.3.0.1 | 1,637 | 4/6/2017 |
17.3.0 | 1,231 | 3/30/2017 |
17.2.0 | 2,759 | 3/1/2017 |
17.1.0 | 2,726 | 2/4/2017 |
16.12.1 | 2,147 | 12/13/2016 |
16.12.0 | 773 | 12/7/2016 |
16.11.0 | 3,736 | 11/4/2016 |
16.10.0 | 2,116 | 10/5/2016 |
8.2.1 | 5,847 | 9/5/2016 |
8.2.0 | 823 | 8/27/2016 |
8.1.0 | 3,361 | 7/20/2016 |
8.0.0 | 4,553 | 6/13/2016 |
7.9.0 | 31,195 | 4/25/2016 |
7.8.0 | 1,020 | 3/28/2016 |
7.7.0 | 2,535 | 2/1/2016 |
7.6.1 | 54,797 | 12/24/2015 |
7.6.0 | 796 | 12/16/2015 |
7.5.0 | 4,401 | 11/24/2015 |
7.4.0 | 1,022 | 10/23/2015 |
7.3.0 | 1,406 | 9/22/2015 |
7.2.0 | 1,702 | 8/20/2015 |
7.1.0 | 4,792 | 7/17/2015 |
7.0.0 | 1,607 | 6/9/2015 |
6.9.0 | 3,293 | 4/24/2015 |
6.8.0 | 3,161 | 2/6/2015 |
6.7.0 | 981 | 12/31/2014 |
6.6.0 | 2,291 | 11/12/2014 |
6.5.0 | 1,348 | 9/8/2014 |
6.4.0 | 2,466 | 7/3/2014 |
6.3.0 | 3,234 | 5/31/2014 |
6.2.0 | 1,648 | 4/30/2014 |
6.1.0 | 2,142 | 3/19/2014 |
6.0.0 | 2,976 | 12/31/2013 |
5.9.0 | 1,292 | 11/29/2013 |
5.8.0 | 3,315 | 10/23/2013 |
5.7.0 | 1,523 | 9/2/2013 |
5.6.2 | 1,395 | 7/29/2013 |
5.6.1.1 | 951 | 7/18/2013 |
5.6.1 | 1,067 | 7/17/2013 |
5.6.0 | 1,044 | 7/9/2013 |
5.5.0 | 1,482 | 4/3/2013 |
5.4.0 | 1,819 | 2/5/2013 |
5.3.0 | 5,087 | 12/28/2012 |
5.2.0 | 1,192 | 11/20/2012 |
5.1.0 | 3,968 | 10/8/2012 |
5.0.0 | 1,151 | 8/29/2012 |
4.9.0 | 1,142 | 7/19/2012 |
4.8.0 | 1,315 | 6/4/2012 |
4.7.0 | 1,153 | 4/18/2012 |
4.6.0 | 2,208 | 2/25/2012 |
4.5.0.1 | 1,084 | 2/16/2012 |
4.5.0 | 32,452 | 1/24/2012 |