QRCoder
QRCoder copied to clipboard
A pure C# Open Source QR Code implementation
## Type of issue [ ] Bug [X] Question (e.g. about handling/usage) [ ] Request for new feature/improvement ## Expected Behavior Regarding your post: https://en.code-bude.net/2017/05/21/how-to-generate-swiss-qr-code-in-csharp-and-vba/ do you provide the COM-interface?...
## Type of issue - [ ] Request for new feature/improvement ## Expected Behavior Add new payload generator for PromptPay (EMV QRCPS) since it is one of the most used...
## Type of issue Typo in readme ## I don't think it is 5 lines 
This is my code. QRCodeGenerator qrGenerator = new QRCodeGenerator(); QRCodeData qrCodeData = qrGenerator.CreateQrCode(qrData.Join("\n"), QRCodeGenerator.ECCLevel.Q); BitmapByteQRCode qrCode = new BitmapByteQRCode(qrCodeData); byte[] qrCodeBytes = qrCode.GetGraphic(20); using (SKBitmap skBitmap = SKBitmap.Decode(qrCodeBytes)) { var...
Added Net6 in the conditional to take the reference System.Drawing.Common. Net35 was removed due to System.Drawing.Bitmap type does not exist on it. ## Summary This PR fixes/implements the following **bugs/features**:...
I am having a error on this line of code ,var svgDocument = SvgDocument.Open(stream); That is saying -> CS1503 Argument 1: cannot convert from 'System.IO.MemoryStream' to 'string´ Help Pls ```...
## Summary This PR fixes/implements the following **bugs/features**: * Documentation inaccuracy ## Closing issues Closes #475 #443 #435
Hello What is the purpose of PayloadGenerator? I don't see any difference in the result. The two codes give exactly the same image ``` Url generator = new Url("https://github.com/codebude/QRCoder/"); string...
## Type of issue [x ] Bug ## Expected Behavior Sample code from readme.md works in VS 2022 LTSC 17.6 / .NET 6.0 Sample code from readme.md: ```C# QRCodeGenerator qrGenerator...
I love the QR codes generated by ArtQRCode, but would like to customize them further, so that I could have a unique one for every user. [qr-code-monkey](https://www.qrcode-monkey.com), for example, lets...