Aspose.BarCode
21.2.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 21.2.0
dotnet add package Aspose.BarCode --version 21.2.0
<PackageReference Include="Aspose.BarCode" Version="21.2.0" />
paket add Aspose.BarCode --version 21.2.0
#r "nuget: Aspose.BarCode, 21.2.0"
// Install Aspose.BarCode as a Cake Addin
#addin nuget:?package=Aspose.BarCode&version=21.2.0
// Install Aspose.BarCode as a Cake Tool
#tool nuget:?package=Aspose.BarCode&version=21.2.0
Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
.NET Barcode & QR Library
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.
Generate & Read Linear & 2D Barcode Types via C# / VB.NET
- Recognize different barcode & QR types.
- Fast & accurate barcode scanning with image preprocessing.
- Write barcodes in multiple raster & vector image formats.
- Print barcode labels to physical or virtual printers.
- Export barcode as XML.
- Support for barcode supplement data and checksum.
- Specify the image area to scan the barcode.
- Create device resolution dependent images.
Barcode Types
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)
Load Read Barcodes From
Images: JPEG, TIFF, PNG, BMP, GIF, EXIF
Save Barcode Labels As
Images: EMF, SVG, JPEG, TIFF, PNG, BMP, GIF, EXIF
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.
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
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
Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
.NET Barcode & QR Library
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.
Generate & Read Linear & 2D Barcode Types via C# / VB.NET
- Recognize different barcode & QR types.
- Fast & accurate barcode scanning with image preprocessing.
- Write barcodes in multiple raster & vector image formats.
- Print barcode labels to physical or virtual printers.
- Export barcode as XML.
- Support for barcode supplement data and checksum.
- Specify the image area to scan the barcode.
- Create device resolution dependent images.
Barcode Types
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)
Load Read Barcodes From
Images: JPEG, TIFF, PNG, BMP, GIF, EXIF
Save Barcode Labels As
Images: EMF, SVG, JPEG, TIFF, PNG, BMP, GIF, EXIF
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.
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
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/barcode/net/aspose-barcode-for-net-21-2-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 |
---|---|
Zny.ServiceClient.Common
微服务调用公共类
|
|
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.
|
|
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 |
---|---|---|
21.3.0 | 1,285 | 3/18/2021 |
21.2.0 | 3,066 | 2/17/2021 |
21.1.0 | 2,017 | 1/22/2021 |
20.12.0 | 4,288 | 12/17/2020 |
20.11.0 | 8,838 | 11/19/2020 |
20.10.0 | 2,684 | 10/23/2020 |
20.9.0 | 4,934 | 9/25/2020 |
20.8.0 | 3,643 | 8/27/2020 |
20.7.0 | 4,838 | 7/28/2020 |
20.6.0 | 7,832 | 6/26/2020 |
20.4.0 | 10,121 | 4/23/2020 |
20.3.0 | 6,701 | 3/24/2020 |
20.2.0 | 5,691 | 2/23/2020 |
20.1.0 | 2,438 | 1/24/2020 |
19.12.0 | 16,908 | 12/23/2019 |
19.11.0 | 8,286 | 11/19/2019 |
19.10.0 | 2,280 | 10/23/2019 |
19.9.0 | 16,617 | 9/17/2019 |
19.8.0 | 2,512 | 8/15/2019 |
19.7.0 | 1,742 | 7/25/2019 |
19.6.1 | 939 | 7/6/2019 |
19.5.0 | 2,423 | 5/24/2019 |
19.4.0 | 38,607 | 4/11/2019 |
19.3.0 | 3,065 | 3/19/2019 |
19.2.1 | 1,042 | 3/15/2019 |
19.1.1 | 730 | 3/15/2019 |
18.12.1 | 3,099 | 3/15/2019 |
18.11.1 | 338 | 3/15/2019 |
18.10.1 | 356 | 3/15/2019 |
18.9.1 | 352 | 3/15/2019 |
18.8.0 | 3,734 | 8/30/2018 |
18.7.0 | 4,187 | 7/17/2018 |
18.6.0 | 4,789 | 6/14/2018 |
18.5.0 | 1,591 | 5/18/2018 |
18.4.0 | 1,625 | 5/2/2018 |
18.3.0 | 3,857 | 3/20/2018 |
18.2.0 | 7,207 | 2/18/2018 |
18.1.0 | 11,468 | 1/10/2018 |
17.12.0 | 9,061 | 12/4/2017 |
17.11.0 | 2,482 | 11/8/2017 |
17.10.0 | 1,114 | 10/19/2017 |
17.9.0 | 1,072 | 9/28/2017 |
17.8.0 | 2,832 | 8/31/2017 |
17.7.0 | 2,388 | 7/27/2017 |
17.6.0 | 1,752 | 7/3/2017 |
17.5.0 | 1,369 | 6/1/2017 |
17.4.0 | 6,043 | 5/1/2017 |
17.3.0.1 | 1,759 | 4/6/2017 |
17.3.0 | 1,355 | 3/30/2017 |
17.2.0 | 2,879 | 3/1/2017 |
17.1.0 | 2,866 | 2/4/2017 |
16.12.1 | 2,283 | 12/13/2016 |
16.12.0 | 899 | 12/7/2016 |
16.11.0 | 3,958 | 11/4/2016 |
16.10.0 | 2,393 | 10/5/2016 |
8.2.1 | 6,983 | 9/5/2016 |
8.2.0 | 941 | 8/27/2016 |
8.1.0 | 3,608 | 7/20/2016 |
8.0.0 | 4,871 | 6/13/2016 |
7.9.0 | 31,863 | 4/25/2016 |
7.8.0 | 1,148 | 3/28/2016 |
7.7.0 | 2,675 | 2/1/2016 |
7.6.1 | 59,287 | 12/24/2015 |
7.6.0 | 918 | 12/16/2015 |
7.5.0 | 4,829 | 11/24/2015 |
7.4.0 | 1,151 | 10/23/2015 |
7.3.0 | 1,542 | 9/22/2015 |
7.2.0 | 1,848 | 8/20/2015 |
7.1.0 | 5,166 | 7/17/2015 |
7.0.0 | 1,728 | 6/9/2015 |
6.9.0 | 3,537 | 4/24/2015 |
6.8.0 | 3,509 | 2/6/2015 |
6.7.0 | 1,109 | 12/31/2014 |
6.6.0 | 2,426 | 11/12/2014 |
6.5.0 | 1,469 | 9/8/2014 |
6.4.0 | 2,613 | 7/3/2014 |
6.3.0 | 3,365 | 5/31/2014 |
6.2.0 | 1,871 | 4/30/2014 |
6.1.0 | 2,323 | 3/19/2014 |
6.0.0 | 3,553 | 12/31/2013 |
5.9.0 | 1,429 | 11/29/2013 |
5.8.0 | 5,160 | 10/23/2013 |
5.7.0 | 1,651 | 9/2/2013 |
5.6.2 | 1,522 | 7/29/2013 |
5.6.1.1 | 1,077 | 7/18/2013 |
5.6.1 | 1,199 | 7/17/2013 |
5.6.0 | 1,165 | 7/9/2013 |
5.5.0 | 1,608 | 4/3/2013 |
5.4.0 | 1,972 | 2/5/2013 |
5.3.0 | 7,248 | 12/28/2012 |
5.2.0 | 1,313 | 11/20/2012 |
5.1.0 | 4,489 | 10/8/2012 |
5.0.0 | 1,281 | 8/29/2012 |
4.9.0 | 1,277 | 7/19/2012 |
4.8.0 | 1,456 | 6/4/2012 |
4.7.0 | 1,281 | 4/18/2012 |
4.6.0 | 2,405 | 2/25/2012 |
4.5.0.1 | 1,206 | 2/16/2012 |
4.5.0 | 33,437 | 1/24/2012 |