QRCoder icon indicating copy to clipboard operation
QRCoder copied to clipboard

A pure C# Open Source QR Code implementation

Results 128 QRCoder issues
Sort by recently updated
recently updated
newest added

This change will create smaller QR codes in v2, assuming that mode switching code is added.

enhancement

Add backwards compatibility method for .NET Standard 2.0 targets.

Since it does not affect the view box anymore

There are lots of intermediate allocations, that could be avoided. For .NET 10 the JIT will probably elide them, but for .NET 6+ string interpolation should be used. And IIRC...

Instead of the `byte[]` could we use a ```c# public struct Color { public byte R; public byte G; public byte B; public byte A; } ``` to avoid the...

By default, the ASCII 'small' renderer prints inverted compared to the ASCII standard renderer or any other renderer. It has a boolean 'invert' argument, which defaults to 'false'; setting this...

bug

To a huge part a matter of taste, but using the literal `""` has a few advantages over using `string.Empty` (in general, not specifi to this repo): * less IL...