ASP. NET 5 lines of code to do two-dimensional code

Source: Internet
Author: User

Just into the job, received a company needs to give each news chain to deliver a two-dimensional code, not done before, today tried a little bit simple, minutes of work.

Baidu began to search, about the two-dimensional code is a call QRCode tool class to do, that great Microsoft must have their own qrcode, sure enough nuget to find the Qrcodenet this DLL loaded on, put the following 4 lines of code a paste done!

protected void Button1_Click (object sender, EventArgs e)
{
Qrencoder Qrencoder = new Qrencoder (ErrorCorrectionLevel.H);
QRCode QRCode = new QRCode ();
Qrencoder.tryencode (TextBox1.Text, out qrcode);
Renderer Renderer = new Renderer (5, Brushes.black, brushes.white);
Renderer. Createimagefile (Qrcode.matrix, @ "C:\temp\HelloWorld.png", imageformat.png);
}

Renderer have. Createimagefile and some methods of the output stream, you can follow up to see the understanding.

ASP. NET 5 lines of code to do two-dimensional code

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.