Found 7,641 packages
Route Debugger is a little utility I wrote to help debug issues with route configurations. See http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx
This library was designed to give an easy class for developers to use when they need to generate barcode images from a string of data.
ZXing.Net is a port of ZXing, an open-source, multi-format 1D/2D barcode image processing library originally implemented in Java. It has been ported by hand with a lot of optimizations and improvements. It is compatible with .Net 2.0/3.5/4.x/5.x/6.x/7.x/8.x/9.x, Windows RT Class Library and Components, UWP, .Net Standard 1.x and 2.0x, .Net Core App 3.x, Silverlight 4, Silverlight 5, Windows Phone 7.x and Windows Phone 8.x and Xamarin.Android
IronBarcode - The C# Barcode & QR Library Quickstart guide: https://ironsoftware.com/csharp/barcode/ IronBarcode allows developers to read & write Barcodes and QR Codes within .NET Applications & websites. Reading or writing barcodes with IronBarcode only requires a single line of code. The .NET Barcode Library reads and writes most Barcode and QR standards. These include Code 39/93/128, UPC-A/E, EAN-8/13, ITF, Databar / Databar Expanded, Codabar, Aztec, Data Matrix, MaxiCode, PDF417, Plessey / MSI Plessey, Intelligent Mail, and QR / Micro QR / rMQR. The possible barcode result data types include text, binary data, page, and image file. The barcode reading engine includes automatic image correction and barcode detection technology to take the pain out of locating and reading from imperfect scans. Multithreading, cropping, and batch scanning provides fast and accurate scanning of multi-page documents. The barcode writing API checks and verifies format, length, number, checksum to automatically avoid encoding errors. The barcode writer allows for styling, resizing, margins, borders, recoloring, and adding text annotations. Can write to image, PDF or HTML file. Key library features include: * Read single or multiple barcodes and QR Codes from images or PDFs. * Image correction for skewing, orientation, noise, low resolution, contrast etc. * Create barcodes and apply to images or PDF documents. * Embed barcodes into HTML documents. * Style barcodes and add annotation text. * QR Code writing allows adding of logos, colors, and advanced QR alignment. IronBarcode can be used within C#, VB.NET, ASP .NET projects, MVC, Web Services, Console & Desktop Applications. Supports: * .NET Framework 4.6.2 + * .NET Core 2.0 + * .NET 5 * .NET 6 * .NET 7 * .NET 8 * .NET 9 * .NET 10 Licensing & Support available for commercial deployments. For code examples, documentation & more visit https://ironsoftware.com/csharp/barcode/ For support please email us at support@ironsoftware.com
Aspose.BarCode for .NET is a robust and reliable barcode generation and recognition component, written in managed C#, it allows developers to quickly and easily add barcode generation and recognition functionality to their Microsoft .NET applications (WinForms, WPF and .NET Core). Aspose.BarCode for .NET supports most established barcode standards and barcode specifications. It has the ability to export to multiple image formats including: BMP, GIF, JPEG, PNG, TIFF, EMF and SVG.
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 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 Standard 2.0 * .NET 8, .NET 7, .NET 6, .NET 5, .NET Core 3.x & 2.x * .NET Framework 4.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
XImage.Barcode Generator is a C# barcode creator library to generate, print QR Code, Data Matrix, Code 128, EAN-13 and many 2d, 1d barcode formats in .NET projects. Supported barcode formats : * QR Code (Steyled QR Code, +GS1), Data Matrix (+GS1), PDF-417 * Code 39, Code 128, GS1-128 * EAN 8, EAN 13, UPC-A, UPC-E * Interleaved 2 of 5, ITF-14 * And many other barcode formats Output : * Raster images: bitmap (.bmp), gif, png, jpeg/jpg, tiff * Vector images: svg, eps * Stream objects or binary data Compatible with : * .NET Standard 2.0 * .NET 8, .NET 7, .NET 6, .NET 5 * .NET Core 3.x, & 2.x * .NET Framework 4.6 Online Guides : * C# Developer Guide : https://www.rasteredge.com/how-to/csharp-imaging/barcode-generating/ * Support : support@rasteredge.com
.NET Barcode Generator is a C# barcode generator library to create QR Code, Data Matrix, Code 128, EAN/UPC and other 2d and 1d barcode formats. You can easily generate QR Code and barcodes in the .NET web and Windows applications. .NET Barcode library can be used in C#, VB.NET, ASP.NET Core, Framework, MVC, Windows Forms, WPF, console and desktop applications. Supported barcode formats : * QR Code (Steyled QR Code, GS1 version), Data Matrix (GS1 version), PDF-417 * Code 39, Code 128, GS1-128 * EAN 8, EAN 13, UPC-A, UPC-E * Interleaved 2 of 5, ITF-14 * And others Barcode Output : * Raster images: bitmap (.bmp), gif, png, jpeg/jpg, tiff * Vector images: svg, eps * Stream objects or binary data Quick to Create : QRCode barcode = new QRCode(); barcode.Data = "QR Code"; barcode.drawBarcode("C://output//qrcode.png"); Compatible with : * .NET Standard 2.0 * .NET 8, .NET 7, .NET 6, .NET 5 * .NET Core 3.x, & 2.x * .NET Framework 4.6 Online Documents * How to Developer Guide : https://www.onbarcode.com/tutorial/csharp-barcode-generation.html * Email : support@onbarcode.com
BarcodeLib - A barcode library to quickly create barcodes (QR Code, Data Matrix, Code 128/39, EAN/UPC, GS1-128), includes comprehensive options to customize the ISO compatible barcodes. View our C# how to start page : https://www.barcodelib.com/csharp/ Quick to start C# code ============================== using BarcodeLib.Barcode; // Create a QR Code barcode QRCode qrcode = new QRCode(); qrcode.Data = "https://www.barcodelib.com"; qrcode.drawBarcode("C://output//qrcode.png"); // Create a Code 128 barcode Linear code128 = new Linear(); code128.Type = Barcode.BarcodeType.CODE128; code128.Data = "CODE 128"; code128.drawBarcode("C://output//code128.png"); Documents ============================== C# How to Guide : https://www.barcodelib.com/csharp/ Tutorials ASP.NET Core : https://www.barcodelib.com/csharp/create-barcode-asp-net-core.html ASP.NET Core MVC : https://www.barcodelib.com/csharp/create-barcode-asp-net-core-mvc.html ASP.NET Framework : https://www.barcodelib.com/asp_net/barcode_aspnet_csharp.html Windows Forms : https://www.barcodelib.com/net_winforms/barcode_net_winforms_csharp.html WPF : https://www.barcodelib.com/csharp/create-barcode-wpf.html Licenses : https://www.barcodelib.com/purchase/main.html Email : support@barcodelib.com
ZXing.Net.Mobile is a C#/.NET library based on the open source Barcode Library: ZXing (Zebra Crossing), using the ZXing.Net Port. It works with Xamarin.iOS, Xamarin.Android, Windows Phone (Silverlight) and Windows Universal. The goal of ZXing.Net.Mobile is to make scanning barcodes as effortless and painless as possible in your own applications. See https://github.com/Redth/ZXing.Net.Mobile/releases for release notes.
Barcode generation library written in .NET Core compatible with .NET 6.
Lightweight Barcode Encoding Library for .NET Framework, .NET Standard and .NET Core.
Barcode Reader for .NET is a C# barcode scanner library to read, scan QR Code, Data Matrix, Code 128 and other 2d and 1d barcode symbologies in your ASP.NET web and WinForms desktop applications. Barcode Reader for .NET is an advanced C# barcode scanner library : * Read, recognize QR Code, Data Matrix, PDF-417, Code 39 / 128, EAN/UPC, Supplemental barcodes, GS1-128, and other 1d barcode formats * Scan, detect multiple barcode formats from a single file with fast reading speed and high recognition rate * Support reading barcodes from GIF, BMP, JPEG, TIFF, PNG image files, and stream objects * Quick to scan and read barcodes from target regions inside the image Compatible with * .NET Standard 2.0 * .NET 8, .NET 7, .NET 6, .NET 5, .NET Core 3.x & 2.x * .NET Framework 4.x * Windows, MacOS, Linux, Docker, Azure Documents * How to Guide : https://www.onbarcode.com/tutorial/csharp-barcode-reader.html * Email : support@onbarcode.com
Barcode Reader for .NET is a C# barcode scanning library to read, scan QR Code, Data Matrix, Code 128 and other 2d and 1d barcode symbologies in your ASP.NET web and desktop applications. Barcode Reader for .NET is an advanced barcode scanner package : * Read, scan QR Code, Data Matrix, PDF-417, Code 39 / 128, EAN/UPC, Supplemental barcodes, 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 GIF, BMP, JPEG, TIFF, PNG image files, and stream objects * Quick to scan and read barcodes from specified area inside the image Compatible with * .NET Standard 2.0 * .NET 8, .NET 7, .NET 6, .NET 5, .NET Core 3.x & 2.x * .NET Framework 4.x * Windows, MacOS, Linux, Docker, Azure Online Documents * C# How to Guide : https://www.barcodelib.com/csharp/barcode_reader_csharp.html * Licenses : https://www.barcodelib.com/purchase/license-barcode-reader-net.html * Email : support@barcodelib.com
IronBarcode - The C# Barcode & QR Library Quickstart guide: https://ironsoftware.com/csharp/barcode/ IronBarcode allows developers to read & write Barcodes and QR Codes within .NET Applications & websites. Reading or writing barcodes with IronBarcode only requires a single line of code. The .NET Barcode Library reads and writes most Barcode and QR standards. These include Code 39/93/128, UPC-A/E, EAN-8/13, ITF, Databar / Databar Expanded, Codabar, Aztec, Data Matrix, MaxiCode, PDF417, Plessey / MSI Plessey, Intelligent Mail, and QR / Micro QR / rMQR. The possible barcode result data types include text, binary data, page, and image file. The barcode reading engine includes automatic image correction and barcode detection technology to take the pain out of locating and reading from imperfect scans. Multithreading, cropping, and batch scanning provides fast and accurate scanning of multi-page documents. The barcode writing API checks and verifies format, length, number, checksum to automatically avoid encoding errors. The barcode writer allows for styling, resizing, margins, borders, recoloring, and adding text annotations. Can write to image, PDF or HTML file. Key library features include: * Read single or multiple barcodes and QR Codes from images or PDFs. * Image correction for skewing, orientation, noise, low resolution, contrast etc. * Create barcodes and apply to images or PDF documents. * Embed barcodes into HTML documents. * Style barcodes and add annotation text. * QR Code writing allows adding of logos, colors, and advanced QR alignment. IronBarcode can be used within C#, VB.NET, ASP .NET projects, MVC, Web Services, Console & Desktop Applications. Supports: * .NET Framework 4.6.2 + * .NET Core 2.0 + * .NET 5 * .NET 6 * .NET 7 * .NET 8 * .NET 9 * .NET 10 Licensing & Support available for commercial deployments. For code examples, documentation & more visit https://ironsoftware.com/csharp/barcode/ For support please email us at support@ironsoftware.com
ZXing.Net.Mobile is a C#/.NET library based on the open source Barcode Library: ZXing (Zebra Crossing), using the ZXing.Net Port. It works with Xamarin.iOS, Xamarin.Android, Windows Phone (Silverlight), and Windows Universal. The goal of ZXing.Net.Mobile is to make scanning barcodes as effortless and painless as possible in your own applications. See https://github.com/Redth/ZXing.Net.Mobile/releases for release notes.
Barcode scanning library for .NET MAUI
This package provides the functionality to utilize the features of Syncfusion® Xamarin ProgressBar, and Step ProgressBar.
Barcode for ASP.NET Core is a C# barcode generator library for ASP.NET Core web app. You can easily create, generate QR Code, Data Matrix, Code 128, Code 39 barcode formats in ASP.NET Core C# class, or create barcodes through URL in ASP.NET Core web app. Barcode for ASP.NET library can be used in C#, VB.NET, ASP.NET Core, Framework, MVC, website, web app and web service applications. Supported barcode formats : * QR Code (Steyled QR Code, GS1 version), Data Matrix (GS1 version), PDF-417 * Code 39, Code 128, GS1-128 * EAN 8, EAN 13, UPC-A, UPC-E, +2, +5 supplemental codes * Interleaved 2 of 5, ITF-14 * And other barcodes Output : * Raster images: bitmap (.bmp), gif, png, jpeg/jpg, tiff * Vector images: svg, eps * Stream objects or binary data Compatible with : * .NET Standard 2.0 * .NET 8, .NET 7, .NET 6, .NET 5 * .NET Core 3.x, & 2.x * .NET Framework 4.6 Online Documents * C# How to Guide : https://www.barcodelib.com/csharp/ * Licenses : https://www.barcodelib.com/purchase/license-barcode-net.html * Email : support@barcodelib.com
A member of the Visual Studio SDK