📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

XImage.BarcodeReader.Framework

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

XImage.BarcodeReader.Framework

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 C# 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, MacOS, Linux, Docker, Azure Online Documents * C# How to Guide : https://www.rasteredge.com/how-to/csharp-imaging/read-barcode-csharp/ * Email : support@rasteredge.com

12.3.4
NuGet
Version published
Maintainers
2
Created
Source

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

Keywords

rasteredge

FAQs

Package last updated on 17 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts