IronQR.Slim
2024.6.1
See the version list below for details.
dotnet add package IronQR.Slim --version 2024.6.1
NuGet\Install-Package IronQR.Slim -Version 2024.6.1
<PackageReference Include="IronQR.Slim" Version="2024.6.1" />
paket add IronQR.Slim --version 2024.6.1
#r "nuget: IronQR.Slim, 2024.6.1"
// Install IronQR.Slim as a Cake Addin #addin nuget:?package=IronQR.Slim&version=2024.6.1 // Install IronQR.Slim as a Cake Tool #tool nuget:?package=IronQR.Slim&version=2024.6.1
IronQR - The C# QR Code Library
IronQR is a library developed and maintained by Iron Software that helps C# Software Engineers to detect, read, and create QR Codes in .NET applications & websites with a sophisticated custom Machine Learning model.
IronQR excels at:
- Detecting and Reading Barcodes for Images or Scans
- Create fully custom QR Codes with Logos and Coloring
IronQR has cross platform support compatibility with:
- .NET 8, .NET 7, .NET 6 and .NET 5, Core 2x & 3x, Standard 2, and Framework 4.6.2+
- Windows, macOS, Linux, iOS, Android, Docker, Azure, and AWS
Additionally, our API reference and full licensing information can easily be found on our website.
Using IronQR
Installing the IronQR NuGet package is quick and easy, please install the package like this:
PM> Install-Package IronQR
Once installed, you can get started by adding using IronQr;
to the top of your C# code. Here is is sample and advanced QR examples to get started:
using IronQr;
using IronSoftware.Drawing;
// Create QR Code
QrCode myQr = QrWriter.Write("hello world"); // Embedded value as string
AnyBitmap qrBitmap = myQr.Save(); // Bitmap object able to export as bytes or file
qrBitmap.SaveAs("qr.png"); // Save to disk
// Read QR Code
var qrReader = new QrReader(settings: optionalQrReaderSettings); // Create reader
IEnumerable<QrResult> results = qrReader.Read(new QrImageInput("image.jpg")); // Reader calls ML Model to detect and read
IEnumerable<QrResult> asyncResults = await qrReader.ReadAsync(new QrImageInput("image.jpg")); // Async version
// Advanced QR Creation
var optionalOptions = new QrOptions(QrErrorCorrectionLevel.High, 20); // Advanced QR Generation Options
QrCode myQr = QrWriter.Write("hello world", options: optionalOptions); // QR code created with options
var fancyBrandedQrSettings = new QrStyleOptions // Add logo, branding, coloring, rouding, etc.
{
Dimensions = 300, // px
Margins = 10, // px
Color = Color.Black,
Logo = new QrLogo
{
Bitmap = new AnyBitmap(new Uri("website.com/image.svg")),
Width = 50,
Height = 50,
CornerRadius = 2
}
};
AnyBitmap qrWithBranding = myQr.Save(fancyBrandedQrSettings);
qrWithBranding.SaveAs("qr_fancy.png");
Features
Advanced QR Detection Model:
- Built-in Custom Machine Learning QR Detection Model that is improved monthly
- Fast scanning of areas with detected QR Codes ingnoring noise
- Accurate reading of QR Codes with Error correction
Reading QR Codes:
- Read from many image formats: Images (JPG, PNG, GIF, TIFF, SVG, BMP), Multipage GIF & TIFF, System.Drawing Objects, Streams, and more
- Image Filters to improve image reading: Contrast and Binarize!
- Async / Multithreading Support and Lighweight "Slim" ML-deteched mode
- Output to Text, Image, or URI
Writing QR Codes:
- Write To Document Types: Image (jpg, png, gif, tiff, bmp), System.Drawing Objects, Streams, HTML (DataURI, file, or img), (File, Stream, or Binary)
- Encoding Data: Text, urls, IDs, numbers, & binary data
- Custom QR Error Correction
- Styling QR Codes: Resizing, Margins & Borders, Recoloring, Add text annotations, Adding custom logos and rounding
Licensing & Support available
For code examples, tutorials and documentation visit https://ironsoftware.com/csharp/qr/
For support please email us at support@ironsoftware.com
Documentation Links
- API Reference : https://ironsoftware.com/csharp/qr/object-reference/api/
- Licensing : https://ironsoftware.com/csharp/qr/licensing/
You can email us at support@ironsoftware.com for support directly from our code team. We offer licensing and extensive support for commercial deployment projects.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- IronSoftware.Common (>= 2024.1.7)
- IronSoftware.System.Drawing (>= 2024.6.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on IronQR.Slim:
Package | Downloads |
---|---|
IronQR
IronQR - An advanced package that leverages Machine Learning for more accurate QR code detection. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2024.11.5 | 81 | 11/6/2024 |
2024.10.31 | 939 | 10/10/2024 |
2024.9.1 | 691 | 9/9/2024 |
2024.8.1 | 916 | 7/30/2024 |
2024.7.1 | 1,072 | 7/2/2024 |
2024.6.1 | 1,369 | 6/4/2024 |
2024.5.2 | 765 | 4/29/2024 |
2024.4.1 | 467 | 4/4/2024 |
2024.3.2 | 2,115 | 3/8/2024 |
2024.3.1 | 294 | 3/4/2024 |
2024.2.1 | 1,636 | 1/29/2024 |
2024.1.1 | 938 | 12/29/2023 |
2023.12.1 | 1,015 | 11/28/2023 |
2023.11.1 | 302 | 10/30/2023 |
* Updates IronSoftware.System.Drawing Dependency to 2024.6.1
* Fixes System.StackOverflowException when using the library woth another Iron product