生成二唯码

Posted 黄者之风

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了生成二唯码相关的知识,希望对你有一定的参考价值。

利用QrCode.Net生成二唯码,需要将QrCode.Net dll下载下来

QrEncoder qrEncoder = new QrEncoder(ErrorCorrectionLevel.H);
QrCode qrCode = new QrCode();
qrEncoder.TryEncode("http://www.xxx.com", out qrCode);
int ModuleSize = 6;
QuietZoneModules QuietZone = QuietZoneModules.Two;
var render = new GraphicsRenderer(new FixedModuleSize(ModuleSize, QuietZone));
using (Stream stream = File.OpenWrite("d:/1.png"))
{
    render.WriteToStream(qrCode.Matrix,ImageFormat.Png,stream);
}
Console.WriteLine("生成成功");
Console.ReadKey();

 

以上是关于生成二唯码的主要内容,如果未能解决你的问题,请参考以下文章

postman 自动生成 curl 代码片段

Apollo Codegen 没有找到生成代码的操作或片段

前端开发工具vscode如何快速生成代码片段

前端开发工具vscode如何快速生成代码片段

vscode代码片段生成vue模板

VS Code配置snippets代码片段快速生成html模板,提高前端编写效率