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" />
<PackageReference Include="SoftekBarcodeNet" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=SoftekBarcodeNet&version=9.4.1.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.