PinguApps.Blazor.QRCode 1.1.2

dotnet add package PinguApps.Blazor.QRCode --version 1.1.2
NuGet\Install-Package PinguApps.Blazor.QRCode -Version 1.1.2
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="PinguApps.Blazor.QRCode" Version="1.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PinguApps.Blazor.QRCode --version 1.1.2
#r "nuget: PinguApps.Blazor.QRCode, 1.1.2"
#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 PinguApps.Blazor.QRCode as a Cake Addin
#addin nuget:?package=PinguApps.Blazor.QRCode&version=1.1.2

// Install PinguApps.Blazor.QRCode as a Cake Tool
#tool nuget:?package=PinguApps.Blazor.QRCode&version=1.1.2

PinguApps.Blazor.QRCode

A Blazor component for generating QR codes. This component encodes specified data into a QR code image, which can be customized in terms of size, colors, and error correction level. The QR code is generated as an SVG for optimal scalability and clarity.

NuGet Version NuGet Downloads GitHub License GitHub Repo stars GitHub Actions Workflow Status

🌐 Demo

Check out the QRCode component on the demo site!

🔧 Installation

To install the package, you can either install with the following command: Install-Package PinguApps.Blazor.QRCode Or you can search in the Nuget package manager for PinguApps.Blazor.QRCode.

🚀 Usage

Once the package is installed, you will want to add the following statement to your _Imports.razor:

@using PinguApps.Blazor.QRCode

Now you can simply use the component:

<QRCode Data="My Data!" Size="150px" />

🟣 Parameters

Data

The data to be encoded into the QR code. | Type | Required? | Default Value | |:--:|:--:|:--:| | String | ❌ | string.Empty |

ErrorCorrection

Sets the error correction level for the QR code, which enables it to be decoded even if partially damaged or obscured. | Type | Required? | Default Value | Possible Values | |:--:|:--:|:--:|:--:| | ErrorCorrection | ❌ | ErrorCorrection.Low | ErrorCorrection.Low<br>ErrorCorrection.Medium<br>ErrorCorrection.Quartile<br>ErrorCorrection.High |

Size

Sets the width and height of the generated SVG. | Type | Required? | Default Value | Possible Values | |:--:|:--:|:--:|:--:| | String | ❌ | 100% | Any valid html size for width & height |

PaddingCells

The number of empty cells as padding around the QR code. | Type | Required? | Default Value | |:--:|:--:|:--:| | Int | ❌ | 1 |

ForeColor

Sets the foreground color of the QR code. | Type | Required? | Default Value | Possible Values | |:--:|:--:|:--:|:--:| | String | ❌ | #000000 | Any valid html color |

BackColor

Sets the background color of the QR code. | Type | Required? | Default Value | Possible Values | |:--:|:--:|:--:|:--:| | String | ❌ | #ffffff | Any valid html color |

AriaDescription

Provides an accessible description for the QR code, enhancing usability for screen reader users. This description is used as the aria-label attribute value of the QR code's SVG element, offering context or details about the QR code's content or purpose. | Type | Required? | Default Value | |:--:|:--:|:--:| | String | ❌ | QR Code |

Class

Optional CSS class to be applied to the QR code. | Type | Required? | Default Value | |:--:|:--:|:--:| | String? | ❌ | null |

Id

Optional ID to be applied to the QR code. | Type | Required? | Default Value | |:--:|:--:|:--:| | String? | ❌ | null |

✅ Features

  • JavaScript-Free: No dependency on JavaScript, ensuring full functionality even in environments where JavaScript is disabled or not supported.
  • Static SSR & Prerendering Compatibility: Seamlessly works with static SSR (Server-Side Rendering) and prerendering scenarios, making it suitable for the static SSR pages of the new .NET Identity template as a 2FA QR code generator.
  • Option to add logo or image: Allows the ability to add your own image to the center of the QR Code. If using this then favour selecting higher error correction values.
  • Adjustable Error Correction: Allows setting the error correction level (Low, Medium, Quartile, High) to make the QR code decodable even when partially damaged or obscured.
  • Dynamic Data Encoding: Capable of encoding provided string data into the QR code, facilitating versatile usage scenarios.
  • Customizable Size: Supports setting the width and height of the generated SVG QR code, with a default of "100%" for flexible integration into various UI designs.
  • Configurable Padding: Allows specifying the number of empty cells as padding around the QR code to adjust its appearance, with a default setting of 1.
  • Foreground and Background Color Customization: Offers options to set the foreground and background colors of the QR code, defaulting to black (#000000) and white (#ffffff), respectively.
  • Accessibility Support: Enhances usability for screen reader users with an accessible description for the QR code, which is used as the aria-label attribute value of the SVG element.
  • Styling Options: Supports optional CSS class and ID attributes for the QR code, enabling further customization and styling flexibility.
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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 is compatible.  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 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. 
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
1.1.2 502 3/17/2024
1.1.1 682 2/25/2024
1.1.0 130 2/12/2024
1.0.0 108 2/4/2024