2

我想拆分一个文件(一个 docx 文件)并使用文件的各个片段来编码一个二维码,这样当按顺序读取二维码时,它会重现原始文件。

我能够拆分文件并创建一堆 QRCode,但是当尝试重新创建文件时,解码器会抛出以下错误消息。

“检测到的查找器图案数量无效”

我正在使用http://www.codeproject.com/KB/cs/qrcode.aspx库。

我的编码器代码

私有列表编码(字符串内容,编码编码,int System.Drawing.Color qrCodeBackgroundColor,QRCodeCapacity,System.Drawing.Color qrCodeBackgroundColor,System.Drawing.Color

qrCodeForegroundColor,int qrCodeScale, int NoOfQRcodes)

{

      List<Bitmap> _qrcodesImages = new List<Bitmap>();

      byte[] _filebytearray = encoding.GetBytes(content);

      for (int k = 0,l=0; k < NoOfQRcodes; k++)
      {
          byte[] _tempByteArray = _filebytearray.Skip(l).Take(QRCodeCapacity).ToArray();
          bool[][] matrix = calQrcode(_tempByteArray);

          SolidBrush brush = new SolidBrush(qrCodeBackgroundColor);
          Bitmap image = new Bitmap((matrix.Length * qrCodeScale) + 1, (matrix.Length * qrCodeScale) + 1);
          Graphics g = Graphics.FromImage(image);
          g.FillRectangle(brush, new Rectangle(0, 0, image.Width, image.Height));
          brush.Color = qrCodeForegroundColor;
          for (int i = 0; i < matrix.Length; i++)
          {
              for (int j = 0; j < matrix.Length; j++)
              {
                  if (matrix[j][i])
                  {
                      g.FillRectangle(brush, j * qrCodeScale, i * qrCodeScale, qrCodeScale, qrCodeScale);
                  }
              }
          }
          _qrcodesImages.Add(image);
          l += QRCodeCapacity;
      }

      return _qrcodesImages;
  }
4

0 回答 0