
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
XImage.BarcodeReader.Framework
Advanced tools
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
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);
}
FAQs
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
We found that ximage.barcodereader.framework demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.