XImage.BarcodeReader.Framework
12.2.0.1-rc2
This is a prerelease version of XImage.BarcodeReader.Framework.
dotnet add package XImage.BarcodeReader.Framework --version 12.2.0.1-rc2
NuGet\Install-Package XImage.BarcodeReader.Framework -Version 12.2.0.1-rc2
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="XImage.BarcodeReader.Framework" Version="12.2.0.1-rc2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add XImage.BarcodeReader.Framework --version 12.2.0.1-rc2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: XImage.BarcodeReader.Framework, 12.2.0.1-rc2"
#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.
// Install XImage.BarcodeReader.Framework as a Cake Addin #addin nuget:?package=XImage.BarcodeReader.Framework&version=12.2.0.1-rc2&prerelease // Install XImage.BarcodeReader.Framework as a Cake Tool #tool nuget:?package=XImage.BarcodeReader.Framework&version=12.2.0.1-rc2&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
XImage.Barcode Reader is a C# barcode scanning library to read, scan QR Code, Code 128 and many 2d and 1d barcode formats in .NET Framework projects.
Barcode Reader from RasterEdge is an advanced barcode scanner library :
- Read, scan QR Code, Data Matrix, PDF-417, Code 39 / 128, EAN/UPC, GS1-128, and other 1d barcode formats
- Recognise multiple barcodes from a single file with fast reading speed and high recognition rate
- Support reading barcodes from PDF, multi-page TIFF, GIF, BMP, JPEG, TIFF, PNG image files, and stream objects
Compatible with
- .NET Framework 4.x, 3.x, 2.x
- Windows, Mac, Linux, Docker, Azure
Get to Start
Once installed the package, you can use the following C# code to scan, recogize barcodes from images in C# application
// load PDF document
PDFDocument doc = new PDFDocument(inputDirectory + "Sample_Barcode.pdf");
// get the page you want to scan
BasePage page = doc.GetPage(0);
// set reader setting
ReaderSettings setting = new ReaderSettings();
// set type to read
setting.AddTypesToRead(BarcodeType.EAN13);
// read barcode from PDF page
Barcode[] barcodes = BarcodeReader.ReadBarcodes(setting, page);
foreach (Barcode barcode in barcodes)
{
// print the loaction of barcode on image
Console.WriteLine(barcode.BoundingRectangle.X + " " + barcode.BoundingRectangle.Y);
// output barcode data onto screen
Console.WriteLine(barcode.DataString);
}
Support & Documents
- C# How to Guide : https://www.rasteredge.com/how-to/csharp-imaging/read-barcode-csharp/
- Email : support@rasteredge.com
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net20 is compatible. net35 was computed. net40 is compatible. 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 was computed. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 2.0
- RasterEdge.Core.Framework (>= 12.2.0.1-rc2 && < 12.2.1)
-
.NETFramework 4.0
- RasterEdge.Core.Framework (>= 12.2.0.1-rc2 && < 12.2.1)
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 |
---|---|---|
12.2.0.1-rc2 | 0 | 12/2/2024 |