SudhanshuAESS
Results
1
issues of
SudhanshuAESS
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...