dinid
Open Source QRCode Library,开源项目网址:http://www.codeproject.com/KB/cs/qrcode.aspx
在实际使用中有两点需要修改的地方:
1).net 3.0及以上版本运行是报错,需要修改
MemoryStream memoryStream = new MemoryStream((byte[])Resources.ResourceManager.GetObject(fileName)); 
2)原版本只支持英文ASCII码,需要修改为支持UTF8以支持中文。
修改 QRCodeEncoder.cs 和 QRCodeDecoder.cs 中 全部的Encoding.Unicode 为 Encoding.UTF8 ;
修改 QRCodeUtility.cs 中 UnicodeEncoding encoding = new UnicodeEncoding()为UTF8Encoding encoding = new UTF8Encoding(); 

分类:

技术点:

相关文章:

  • 2021-07-24
  • 2022-12-23
  • 2021-09-12
  • 2021-07-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-05
  • 2021-09-13
  • 2022-02-10
  • 2021-05-19
  • 2022-12-23
  • 2021-08-14
  • 2022-12-23
相关资源
相似解决方案