Vintasoft.Barcode 15.3.12.1

dotnet add package Vintasoft.Barcode --version 15.3.12.1
                    
NuGet\Install-Package Vintasoft.Barcode -Version 15.3.12.1
                    
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="Vintasoft.Barcode" Version="15.3.12.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Vintasoft.Barcode" Version="15.3.12.1" />
                    
Directory.Packages.props
<PackageReference Include="Vintasoft.Barcode" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Vintasoft.Barcode --version 15.3.12.1
                    
#r "nuget: Vintasoft.Barcode, 15.3.12.1"
                    
#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.
#:package Vintasoft.Barcode@15.3.12.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Vintasoft.Barcode&version=15.3.12.1
                    
Install as a Cake Addin
#tool nuget:?package=Vintasoft.Barcode&version=15.3.12.1
                    
Install as a Cake Tool

Vintasoft.Barcode.dll is .NET assembly from VintaSoft Barcode .NET SDK and it contains classes that allows to read, write, verify barcodes in .NET.

GENERAL FEATURES

  • This is 100% managed .NET SDK written in C#
  • Cross-platform support for Windows x86/x64, Linux x64/ARM64, macOS x64/ARM64
  • Recognize barcodes from image in .NET and ASP.NET
  • Generate raster barcode image or vector barcode in .NET and ASP.NET
  • Verify print quality of 1D linear barcode image using ISO/IEC 15416 barcode print quality test
  • Verify print quality of 2D matrix barcode image using ISO/IEC 15415 barcode print quality test
  • Verify print quality of 2D multi-row barcode image using ISO/IEC 15415 barcode print quality test

SUPPORTED BARCODE TYPES

  • Supported 1D barcode types: Codabar, Code 11, Code 128, Code 16K, Code 32, Code 39, Code 39 Extended, Code 93, EAN-13, EAN-8, GS1-128, GS1 DataBar Family, HIBC LIC 39, HIBC LIC 128, IATA 2 of 5, Interleaved 2 of 5, ISBN, ISBT 128, ISMN, ISSN, ITF-14, JAN-13, JAN-8, Matrix 2 of 5, MSI, OPC, Patch Code, Plus 2, Plus 5, Pharmacode, PZN, RSS Family, SSCC-18, Standard 2 of 5, Telepen, UPCA, UPCE, VICS BOL, VICS SCAC PRO, VIN.
  • Supported postal barcode types: Australian Post, Deutsche Post Identcode, Deutsche Post Leitcode, DHL AWB, Dutch KIX, FedEx Ground 96, Intelligent Mail, Mailmark 4-State C, Mailmark 4-State L, Planet, Postnet, Royal Mail, Swiss PostParcel.
  • Supported 2D barcode types: AAMVA, Aztec, Data Matrix, GS1 Aztec, GS1 Data Matrix, GS1 QR, Han Xin Code, HIBC LIC Aztec Code, HIBC LIC Data Matrix, HIBC LIC QR Code, ISBT 128 Data Matrix, MaxiCode, Micro PDF417, Micro QR Code, PDF417, PDF417 Compact, PPN, QR Code, Royal Mail Mailmark CMDM, XFA Compressed Aztec, XFA Compressed DataMatrix, XFA Compressed PDF417, XFA Compressed QR Code

DEVELOPMENT REQUIREMENTS:

  • Development environments: Microsoft Visual Studio, Microsoft Studio Code, JetBrains Rider, .NET CLI
  • Programming languages: C#, F#, VB.NET, any .NET compatible language
  • Development platforms: .NET, WPF, WinForms, ASP.NET

DEPLOYMENT REQUIREMENTS:

  • Windows (Windows 11/10/8.1/8/7; Windows Server 2025/2022/2019/2016/2012/2008; 32-bit and 64-bit) with .NET 10, .NET 9, .NET 8, .NET 7, .NET 6
  • Windows (Windows 11/10/8.1/8/7/Vista/XP; Windows Server 2025/2022/2019/2016/2012/2008/2003; 32-bit and 64-bit) with .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5
  • Linux (Ubuntu 24/23/22/20/18; Debian 12/11/10; Fedora 40/39/38/37/36; OpenSUSE 15; CentOS 9/8/7; Redhate Enterprise Linux 9/8/7; Alpine 3) with .NET 10, .NET 9, .NET 8, .NET 7, .NET 6
  • macOS (macOS 14/13/12/11/10) with .NET 10, .NET 9, .NET 8, .NET 7, .NET 6

READ, WRITE AND VERIFY BARCODE ONLINE

You can test barcode reader, writer and verifier in online VintaSoft ASP.NET Core Barcode Reader/Writer Demo: https://demos.vintasoft.com/AspNetCoreBarcodeAdvancedDemo/

CREATE AND READ YOUR FIRST BARCODE

// create the barcode writer
using (Vintasoft.Barcode.BarcodeWriter barcodeWriter = new Vintasoft.Barcode.BarcodeWriter())
{
    // specify that barcode writer must generate DataMatrix barcode
    barcodeWriter.Settings.Barcode = Vintasoft.Barcode.BarcodeType.DataMatrix;
    // specify value for DataMatrix barcode
    barcodeWriter.Settings.Value = "12345";

    // generate barcode image and save image to a PNG file
    barcodeWriter.SaveBarcodeAsImage("barcode.png");

    // create barcode reader
    using (Vintasoft.Barcode.BarcodeReader barcodeReader = new Vintasoft.Barcode.BarcodeReader())
    {
        // specify that barcode reader must recognize DataMatrix barcodes
        barcodeReader.Settings.ScanBarcodeTypes = Vintasoft.Barcode.BarcodeType.DataMatrix;
        // recognize barcodes in PNG file that is stored in memory stream
        Vintasoft.Barcode.IBarcodeInfo[] barcodeInfos = barcodeReader.ReadBarcodes("barcode.png");
        // if barcode is not recognized
        if (barcodeInfos.Length == 0)
        {
            Console.WriteLine("Barcode Reader", "Barcode is not recognized.", "OK");
        }
        // if barcode is recognized
        else
        {
            // display information about recognized DataMatrix barcode
            Console.WriteLine(
                string.Format("Barcode is recognized: Type='{0}', Value='{1}'",
                    barcodeInfos[0].BarcodeType,
                    barcodeInfos[0].Value));
        }
    }
}

ONLINE RESOURCES

LICENSE

VintaSoft Barcode .NET SDK is a commercially licensed product.

Getting Help & Support

Have a question or running into an issue?

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Framework net35 is compatible.  net40 was computed.  net403 was computed.  net45 was computed.  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 is compatible.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (8)

Showing the top 5 NuGet packages that depend on Vintasoft.Barcode:

Package Downloads
Vintasoft.Barcode.Web.Services

A platform-independent web service for barcode reading and writing. Web service can be used in ASP.NET WebForms, ASP.NET MVC, ServiceStack, etc. VintaSoft Barcode .NET SDK - the professional .NET barcode reader and generator SDK for developers. It supports reading and writing of 1D and 2D barcodes in digital images and PDF files. Supported barcode types: Australian Post, Aztec, Code11, Code39, Code128, Codabar, DataMatrix, EAN-8, EAN-13, Han Xin, GS1, Industrial standard 2 of 5, Interleaved 2 of 5, Intelligent Mail, PDF417, microPDF417, QR Code, Royal Mail, GS1 RSS, UPC-A, UPC-E, etc.

Vintasoft.Barcode.Web.Api2Controllers

Web API 2 controller for barcode reading and writing in ASP.NET MVC5. VintaSoft Barcode .NET SDK - the professional .NET barcode reader and generator SDK for developers. It supports reading and writing of 1D and 2D barcodes in digital images and PDF files. Supported barcode types: Australian Post, Aztec, Code11, Code39, Code128, Codabar, DataMatrix, EAN-8, EAN-13, Han Xin, GS1, Industrial standard 2 of 5, Interleaved 2 of 5, Intelligent Mail, PDF417, microPDF417, QR Code, Royal Mail, GS1 RSS, UPC-A, UPC-E, etc.

Vintasoft.Barcode.Web.HttpHandlers

HTTP handler for barcode reading and writing in ASP.NET. VintaSoft Barcode .NET SDK - the professional .NET barcode reader and generator SDK for developers. It supports reading and writing of 1D and 2D barcodes in digital images and PDF files. Supported barcode types: Australian Post, Aztec, Code11, Code39, Code128, Codabar, DataMatrix, EAN-8, EAN-13, Han Xin, GS1, Industrial standard 2 of 5, Interleaved 2 of 5, Intelligent Mail, PDF417, microPDF417, QR Code, Royal Mail, GS1 RSS, UPC-A, UPC-E, etc.

Vintasoft.Barcode.AspNetCore.ApiControllers

ASP.NET Core API controller for barcode reading and writing in ASP.NET Core. VintaSoft Barcode .NET SDK - the professional .NET barcode reader and generator SDK for developers. It supports reading and writing of 1D and 2D barcodes in digital images and PDF files. Supported barcode types: Australian Post, Aztec, Code11, Code39, Code128, Codabar, DataMatrix, EAN-8, EAN-13, Han Xin, GS1, Industrial standard 2 of 5, Interleaved 2 of 5, Intelligent Mail, PDF417, microPDF417, QR Code, Royal Mail, GS1 RSS, UPC-A, UPC-E, etc.

Vintasoft.Barcode.ImageSharp

A bridge between Vintasoft.Barcode.dll assembly and SixLabors.ImageSharp library.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
15.3.12.1 31 5/4/2026
15.3.11.1 237 3/31/2026
15.3.10.1 211 3/24/2026
15.3.9.1 239 3/13/2026
15.3.8.1 204 3/5/2026
15.3.7.1 260 2/9/2026
Loading failed