Exemple #1
0
 public QrcodePng(string qRCodeText, int size)
 {
     _stitchGen = new QrCodeStitcher {
         Info = new QRCodeStitchInfo {
             QrCodeText = qRCodeText
         }
     };
     _bitmapCreator = new StitchToBmp(_stitchGen.GetQRCodeInvertedYStitchBlocks(), size);
 }
 public QrcodeSvg()
 {
     _encoder   = new SvgEncoder();
     _stitchGen = new QrCodeStitcher();
 }
Exemple #3
0
 public QrcodeDst()
 {
     _dst       = new DstFile();
     _stitchGen = new QrCodeStitcher();
 }
Exemple #4
0
 public QrcodePng()
 {
     _stitchGen     = new QrCodeStitcher();
     _bitmapCreator = new StitchToBmp(_stitchGen.GetQRCodeInvertedYStitchBlocks(), Size);
 }