QrCodeGenerator icon indicating copy to clipboard operation
QrCodeGenerator copied to clipboard

QR Code Generator for .NET

Results 10 QrCodeGenerator issues
Sort by recently updated
recently updated
newest added

Useful project! I help you reorganize the documentation a little bit to make it easier to read.

Enable trimming. Using multitargeting since [.NET Standard doesn't support trimming](https://learn.microsoft.com/dotnet/core/compatibility/sdk/8.0/trimming-unsupported-targetframework).

Wouldn't it make sense to create 3 sub packages, something like Net.Codecrete.QrCodeGenerator.WindowsDrawing Net.Codecrete.QrCodeGenerator.SkiaSharp Net.Codecrete.QrCodeGenerator.ImageSharp they could already have references to the relevant nuget packages they require. Or is this more...

Bumps [Magick.NET-Q16-AnyCPU](https://github.com/dlemstra/Magick.NET) from 11.3.0 to 13.3.0. Release notes Sourced from Magick.NET-Q16-AnyCPU's releases. Magick.NET 13.3.0 Changes in Magick.NET: Corrected checks for invalid density (#1419). Changed Channels to 64-bit to allow setting...

dependencies

Hey, not a problem or anything, but just wanted to mention that I released a small blazor component recently, which uses this library. Its for a QR code component (obviously)....

'QrCodeGenerator, Version=1.6.0.0, Culture=neutral, PublicKeyToken=6aa6bd7a159d47c2, processorArchitecture=MSIL' at System.Reflection.RuntimeAssembly.InternalLoad(ObjectHandleOnStack assemblyName, ObjectHandleOnStack requestingAssembly, StackCrawlMarkHandle stackMark, Boolean throwOnFileNotFound, ObjectHandleOnStack assemblyLoadContext, ObjectHandleOnStack retAssembly) at System.Reflection.RuntimeAssembly.InternalLoad(AssemblyName assemblyName, RuntimeAssembly requestingAssembly, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, AssemblyLoadContext assemblyLoadContext) at...

Is it possible for the QR code eyes (the three positioning squares) to have rounded corners? If not currently possible, could this capability please be added as an option?

I've found a bug in your mask penalty algorithm. When comparing the results with Nayuki’s original Python library, I noticed that the same QR code configuration (version, error correction level,...

Is it possible to save QRCode as base64 string

```cs // includes and public void Main() ... 11: var segments = QrSegment.MakeSegments("testing"); 12: var qr = QrCode.EncodeSegments(segments, QrCode.Ecc.Medium, 40, 40, -1, true); ``` ``` An unhandled exception of type...