SoftekBarcodeNet 9.4.1.7

dotnet add package SoftekBarcodeNet --version 9.4.1.7
                    
NuGet\Install-Package SoftekBarcodeNet -Version 9.4.1.7
                    
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="SoftekBarcodeNet" Version="9.4.1.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SoftekBarcodeNet" Version="9.4.1.7" />
                    
Directory.Packages.props
<PackageReference Include="SoftekBarcodeNet" />
                    
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 SoftekBarcodeNet --version 9.4.1.7
                    
#r "nuget: SoftekBarcodeNet, 9.4.1.7"
                    
#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 SoftekBarcodeNet@9.4.1.7
                    
#: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=SoftekBarcodeNet&version=9.4.1.7
                    
Install as a Cake Addin
#tool nuget:?package=SoftekBarcodeNet&version=9.4.1.7
                    
Install as a Cake Tool

Softek Barcode Reader Toolkit for Windows Copyright Softek Software Ltd 2002-2025

This is a .NET Framework >= 4.8 package that reads barcodes from JPG, TIF and PDF format data or bitmaps held in memory.

Full documentation for the SDK can be downloaded from:

http://softeksoftware.co.uk/download/barcode_sdk/documentation.pdf

Example code:

        SoftekBarcodeNet.BarcodeReader barcode = new SoftekBarcodeNet.BarcodeReader();

        // Set some properties
        //barcode.LicenseKey = "set your license key here";
        barcode.ReadDataMatrix = false;
        barcode.ReadQRCode = true;

        // Read the barcodes from an image
        int n = barcode.ScanBarCode(@"image.tif");

        // Get the results
        if (n == 0)
        {
            Console.WriteLine("No barcode found on this image");
        }
        else if (n > 0)
        {
            Console.WriteLine("Found the following barcodes...");
            for (int i = 1; i <= n; i++)
            {
                Console.WriteLine("Barcode: " + i.ToString());
                Console.WriteLine("Value: " + barcode.GetBarString(i).ToString());
                Console.WriteLine("Type: " + barcode.GetBarStringType(i).ToString());
                Console.WriteLine("Page: " + barcode.GetBarStringPage(i).ToString());
                Console.WriteLine("Top left X: " + barcode.GetBarStringTlx(i).ToString());
                Console.WriteLine("Top Left Y: " + barcode.GetBarStringTly(i).ToString());
                Console.WriteLine("Bottom Right X: " + barcode.GetBarStringBrx(i).ToString());
                Console.WriteLine("Bottom Right Y: " + barcode.GetBarStringBry(i).ToString());
                Console.WriteLine("");

            }
        }
        else
        {
            Console.WriteLine("There was an error: " + barcode.GetLastError().ToString());
        }
Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.8

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
9.4.1.7 1,400 9/17/2025
9.4.1.1 891 7/17/2025
9.3.1.20 2,612 11/14/2024
9.3.1.11 1,144 2/13/2024
9.3.1.3 440 10/9/2023
9.3.1.2 290 9/7/2023
9.2.3 664 3/7/2023
9.2.1 709 11/1/2022
9.1.5 1,031 6/3/2022
9.1.4 968 2/8/2022
9.1.3 671 8/31/2021
9.1.3-r.1 293 8/6/2021