Original readme can be found here, modified readme here. This is fork of a fork which switches up to dotnet6 (only). Originally based on the QRCode created by StefH, then by Paperdropio using the ImageSharp instead of System.Drawing.Common. System.Drawing.Common is a windows only library now see here, the changes allows the QRDecoder to use one of the more modern cross platform 2d graphics library ImageSharp.
| Name | NuGet |
|---|---|
QRCodeDecoder-ImageSharp |
[NuGet] |
...
services.AddQRCodeDecoder();
...var decoder = _serviceProvider.GetRequiredService<QRDecoder>();
byte[][] data = decoder.ImageDecoder(sourceBitmap);
var data = QRDecoder.ByteArrayToString(data[0]);