FreeSpire.Barcode
6.1.0
Install-Package FreeSpire.Barcode -Version 6.1.0
dotnet add package FreeSpire.Barcode --version 6.1.0
<PackageReference Include="FreeSpire.Barcode" Version="6.1.0" />
paket add FreeSpire.Barcode --version 6.1.0
#r "nuget: FreeSpire.Barcode, 6.1.0"
// Install FreeSpire.Barcode as a Cake Addin
#addin nuget:?package=FreeSpire.Barcode&version=6.1.0
// Install FreeSpire.Barcode as a Cake Tool
#tool nuget:?package=FreeSpire.Barcode&version=6.1.0
.NET Library for Barcode Generation and Recognition
Product Page | Tutorials | Demos | API Reference | | Samples | Forum | Customized Demo
Free Spire.Barcode for .NET is a FREE and professional barcode API specially designed for .NET developers (C#, VB.NET, ASP.NET) to generate, read 1D & 2D barcodes. Developers and programmers can use Spire.Barcode to add Enterprise-Level barcode formats to their .net applications (ASP.NET, WinForms and Web Service) quickly and easily.
Supported Symbiology for Free Spire.Barcode
Free Spire.Barcode for .NET is a community edition of Spire.Barcode for .NET, which supports more barcode types and the scan speed has been improved significantly.
Barcode Types | Generate Barcode | Scan Barcode |
---|---|---|
CODE 25 | × | × |
CODABAR | √ | √ |
CODE 11 | √ | √ |
INTERLEAVED 25 | × | × |
CODE 39 | √ | √ |
CODE 39 EXTENDED | √ | √ |
CODE 93 | √ | √ |
CODE 93 EXTENDED | √ | √ |
CODE 128 | √ | √ |
EAN 8 | √ | √ |
EAN 13 | √ | √ |
EAN 128 | √ | × |
EAN 14 | √ | √ |
SCC 14 | √ | √ |
SSCC 18 | × | × |
ITF 14 | × | × |
ITF 6 | × | × |
UPCA | × | × |
UPCE | × | × |
POST NET | √ | × |
SINGAPORE POST 4 STATE | × | × |
PLANET | × | × |
MSI | × | × |
RSS 14 | × | × |
RSS 14 TRUNCATED | × | × |
RSS LIMITED | × | × |
RSS EXPANDED | × | × |
USPS | × | × |
SWISS POST PARCEL | × | × |
PZN | × | × |
OPC | × | × |
DEUTSCHE POST IDENTCODE | × | × |
DEUTSCHE POST LEITCODE | × | × |
ROYAL MAIL 4 STATE | × | × |
DATA MATRIX | × | × |
QR CODE | √ | × |
PDF 417 | × | × |
PDF 417 MACRO | × | × |
Main Functions
● Robust Barcode Recognition and Generation 1D & 2D Barcode
Developers can read most often used Linear, 2D and Postal barcodes, detecting them anywhere, with any orientation.
● High performance for generating and reading barcode image
Developers can create barcode images in any desired output image format like Bitmap, JPG, PNG, EMF, TIFF, GIF and WMF.
● Superior performance support for reading and writing barcode
Developers can easily set barcode image borders, border colors, style, margins and width. You can also rotate barcode images to any angle and produce high quality barcode images.
Easy and Powerful Integration
Free Spire.Barcode for .NET can be easily integrated into any .net applications. There are two main ways to integrate Free Spire.Barcode in .NET applications, API Mode and Component Mode.
API Mode
● API Mode is just one line of code to create, recognize barcode.
Component Mode
● Component Mode use Visual way to create barcode, then drag Spire.Barcode library to your .NET Windows or ASP.NET Form. No more code needs.
How to Use
Create Code39 barcodes in C#
The following contents will show you how to use Spire.Barcode to create Code39 barcode. It supports 43 characters, consisting of uppercase letters (A through Z), numeric digits (0 through 9) and a number of special characters (, -, $, /, +, %, and space). Usually Code39 starts and ends with “”.
using Spire.Barcode;
namespace Code39
{
class Program
{
static void Main(string[] args)
{
BarcodeSettings bs = new BarcodeSettings();
bs.Type = BarCodeType.Code39;
bs.Data = "*ABC 12345* ";
BarCodeGenerator bg = new BarCodeGenerator(bs);
bg.GenerateImage().Save("Code39Code.png");
System.Diagnostics.Process.Start("Code39Code.png");
}
}
}
Product Page | Tutorials | Demos | API Reference | | Samples | Forum | Customized Demo
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 |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Framework | net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
Xamarin.iOS | xamarinios |
-
.NETCoreApp 2.0
- System.Drawing.Common (>= 4.5.0)
- System.Text.Encoding.CodePages (>= 4.5.0)
-
.NETFramework 4.0
- No dependencies.
-
MonoAndroid 0.0
- SkiaSharp (>= 1.68.0)
- System.Buffers (>= 4.5.0)
- System.Memory (>= 4.5.3)
- System.Runtime.CompilerServices.Unsafe (>= 4.6.0)
- System.Text.Encoding.CodePages (>= 4.6.0)
-
net6.0
- System.Drawing.Common (>= 6.0.0)
- System.Text.Encoding.CodePages (>= 6.0.0)
-
Xamarin.iOS 0.0
- SkiaSharp (>= 1.68.0)
- System.Buffers (>= 4.5.0)
- System.Memory (>= 4.5.3)
- System.Runtime.CompilerServices.Unsafe (>= 4.6.0)
- System.Text.Encoding.CodePages (>= 4.6.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.