Esempio n. 1
0
 public QrcodePng(string qRCodeText, int size)
 {
     _stitchGen = new QrCodeStitcher {
         Info = new QRCodeStitchInfo {
             QrCodeText = qRCodeText
         }
     };
     _bitmapCreator = new StitchToBmp(_stitchGen.GetQRCodeInvertedYStitchBlocks(), size);
 }
Esempio n. 2
0
 public QrcodePng()
 {
     _stitchGen     = new QrCodeStitcher();
     _bitmapCreator = new StitchToBmp(_stitchGen.GetQRCodeInvertedYStitchBlocks(), Size);
 }