Found 7 packages
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.
Aspose.BarCode for C++ is a robust and reliable barcode generation and recognition library, written in C++14, it allows developers to quickly and easily add barcode generation and recognition functionality to their applications. Aspose.BarCode for C++ supports most established barcode standards and barcode specifications. It has the ability to export to multiple image formats including: BMP, GIF, JPEG, PNG, TIFF and SVG.
Bytescout Barcode Reader SDK for .NET, ASP.NET, ActiveX/COM - read barcodes from images and PDF documents
Aspose.BarCode Recognize Micro Application is reliable barcode recognition CLI tool, written in managed C#, it allows to quickly and easily recognize barcodes of various types. Aspose.BarCode Recognize supports most established barcode standards and barcode specifications. It has the ability to work with multiple image formats including: BMP, GIF, JPEG, PNG, TIFF.
Aspose.BarCode Generate Micro Application is reliable barcode generation CLI tool, written in managed C#, it allows to quickly and easily generate barcodes of various types. Aspose.BarCode Recognize supports most established barcode standards and barcode specifications. It has the ability to work with multiple image formats including: BMP, GIF, JPEG, PNG, TIFF, SVG and EMF.
The following code snippet continuously recognizes speech input from an audio file in the default language (en-US). The supported format is single-channel (mono) WAV / PCM with a sampling rate of 16 kHz.
Builds on type of the ConstTypeArgs.Core library to provide const type arguments that allow you to use type parameters to pass UInt128 values to generics at compile-time. This provides an analog to type specialization in C++, and can be used for scenarios such as: * Static configuration, * Eliminating unnecessary instance constructors, * "Passing" values to type initializers, * And more. Built-in const type arguments include values for 0 to 16 and others. Here's a simple demonstration showing how to define and use const type arguments and domain-specific type arguments: using ConstTypeArgs.UInt128s; // Const type arguments: public readonly struct _8 : K_UInt128<_8> { public static UInt128 Value => 8; } public readonly struct _64_000 : K_UInt128<_64_000> { public static UInt128 Value => 64000; } public abstract class DefaultSize : UInt128<_64_000> { } // Usage: public class Foo<TSize> where TSize : K_UInt128 { public static readonly UInt128 BigArraySize = TSize.Value; // Code to initialize very large arrays. static Foo() { Console.WriteLine($"Big array size is {BigArraySize.Length}"); } } // Elsewhere var foo = new Foo<_8>(); // Outputs "Big array size is 8" foo = new Foo<DefaultSize>(); // Outputs "Big array size is 32"