LEC.Services.QRReader 8.0.3

dotnet add package LEC.Services.QRReader --version 8.0.3                
NuGet\Install-Package LEC.Services.QRReader -Version 8.0.3                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LEC.Services.QRReader" Version="8.0.3" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LEC.Services.QRReader --version 8.0.3                
#r "nuget: LEC.Services.QRReader, 8.0.3"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LEC.Services.QRReader as a Cake Addin
#addin nuget:?package=LEC.Services.QRReader&version=8.0.3

// Install LEC.Services.QRReader as a Cake Tool
#tool nuget:?package=LEC.Services.QRReader&version=8.0.3                

QRReader

Reading a barcode or QR code from an image or a pdf. <br/> (Compatible files: BMP, GIF, EXIF, JPG, PNG, TIFF and PDF)

Example for an image:

using LEC.Services.QRReader;

var service = new QRReaderService();
var results = await service.ReadImgAsync("path/file.png");

foreach(var result in results)
{
    Console.WriteLine(result.Text);
}

Example for a PDF:

using LEC.Services.QRReader;

var service = new QRReaderService();
var results = await service.ReadPdfAsync("path/file.pdf");

foreach(var result in results)
{
    Console.WriteLine(result.Text);
}

Please support me on PayPal if you find this project useful.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.3 63 2/25/2025
8.0.2 59 2/25/2025
8.0.1 52 2/25/2025
8.0.0 59 2/25/2025