public static string GetSymbologyFriendlyName(
BarcodeSymbology symbology
)
+ (NSString *)friendlyNameForSymbology:(LTBarcodeSymbology)symbology
public static String getSymbologyFriendlyName(BarcodeSymbology symbology)
public:
static String^ GetSymbologyFriendlyName(
BarcodeSymbology symbology
)
def GetSymbologyFriendlyName(self,symbology):
symbology
A BarcodeSymbology enumeration member.
A string that contains the friendly name of the symbology.
Do not pass the special BarcodeSymbology.Unknown to this member, as this will result in an exception being thrown.
The GetSupportedSymbologies returns all the barcode symbologies (types) supported by LEADTOOLS. Depending on the level of unlocked support and availability of the back end barcodes assemblies, not all of the supported types may be available. For example, if the Leadtools.Barcode.QrRead.dll assembly is missing, QR read support will not be available to your application.
To get a list of the barcode symbologies available for reading, use BarcodeReader.GetAvailableSymbologies and to get a list of the barcode symbologies available for writing, use BarcodeWriter.GetAvailableSymbologies.
To get the friendly name of any barcode symbology, use BarcodeEngine.GetSymbologyFriendlyName.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Barcode;
using Leadtools.ImageProcessing;
public void BarcodeEngine_SupportedAndAvailableSymbologiesExample()
{
// Show all the supported symbologies
BarcodeSymbology[] supportedSymbologies = BarcodeEngine.GetSupportedSymbologies();
Console.WriteLine("{0} Supported symbologies:", supportedSymbologies.Length);
foreach (BarcodeSymbology symbology in supportedSymbologies)
{
Console.WriteLine("{0}: {1}", symbology, BarcodeEngine.GetSymbologyFriendlyName(symbology));
}
Console.WriteLine("----------");
// Create a Barcode engine to get the available read and write symbologies
BarcodeEngine engine = new BarcodeEngine();
BarcodeSymbology[] readSymbologies = engine.Reader.GetAvailableSymbologies();
Console.WriteLine("{0} Avaliable read symbologies:", readSymbologies.Length);
foreach (BarcodeSymbology symbology in readSymbologies)
{
Console.WriteLine(symbology);
}
Console.WriteLine("----------");
BarcodeSymbology[] writeSymbologies = engine.Writer.GetAvailableSymbologies();
Console.WriteLine("{0} Avaliable write symbologies:", writeSymbologies.Length);
foreach (BarcodeSymbology symbology in writeSymbologies)
{
Console.WriteLine(symbology);
}
}
BarcodeEngine.GetSupportedSymbologies
BarcodeReader.GetAvailableSymbologies
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document