C#利用QrCode.Net產生二維碼(Qr碼)

來源:互聯網
上載者:User

現在網上很多應用都是用二維碼來分享網址或者其它的資訊。尤其在移動領域,二維碼更是有很大的應用情境。因為項目的需要,需要在網站中增加一個產生二維碼分析網址的功能,在Google大幅度抽筋的情況下無奈使用百度。百度N多,找到一些項目,但是可用性不強。(有一個項目是用VS2005開發的,在2010中調試不開。)終於在codeplex上找到一個“神器”,這個“神器”可以很方便的產生二維碼,速度那是相當的快,並且可支援中文,遵從MIT協議。

QrCode.Net是一個使用C#編寫的用於產生二維碼圖片的類庫,使用它可以非常方便的為WinForm、WebForm、WPF、Silverlight和Windows Phone 7應用程式提供二維碼編碼輸出功能。可以將二維碼檔案匯出為eps格式。

項目地址為:http://qrcodenet.codeplex.com

QrCode.Net不再採用http://code.google.com/p/zxing/ ZXing的連接埠,新的版本將有更好的效能。

測試結果如下(微秒):

輸入字串長度:74個

EC performance 1000 Tests~ QrCode.Net: 3929 ZXing: 5221

同時,QrCode.Net可以對字串進行分析,決定是否使用UTF-8編碼。(比如使用中文的時候。)

QrCode使用方法:

建立項目添加對類庫的引用,然後引入Gma.QrCodeNet.Encoding命名空間。

using Gma.QrCodeNet.Encoding;

在控制台中輸出二維碼:

            Console.Write(@"Type some text to QR code: ");            string sampleText = Console.ReadLine();            QrEncoder qrEncoder = new QrEncoder(ErrorCorrectionLevel.M);            QrCode qrCode = qrEncoder.Encode(sampleText);            for (int j = 0; j < qrCode.Matrix.Width; j++)            {                for (int i = 0; i < qrCode.Matrix.Width; i++)                {                    char charToPrint = qrCode.Matrix[i, j] ? '█' : ' ';                    Console.Write(charToPrint);                }                Console.WriteLine();            }            Console.WriteLine(@"Press any key to quit.");            Console.ReadKey();

此代碼將產生以下輸出:

 

在Graphics上繪製二維碼:

       const string helloWorld = "Hello World!";            QrEncoder qrEncoder = new QrEncoder(ErrorCorrectionLevel.H);            QrCode qrCode = qrEncoder.Encode(helloWorld);            const int moduleSizeInPixels = 5;            Renderer renderer = new Renderer(moduleSizeInPixels, Brushes.Black, Brushes.White);            Panel panel = new Panel();            Point padding =  new Point(10,16);            Size qrCodeSize = renderer.Measure(qrCode.Matrix.Width);            panel.AutoSize = false;            panel.Size = qrCodeSize + new Size(2 * padding.X, 2 * padding.Y);                        using (Graphics graphics = panel.CreateGraphics())            {                renderer.Draw(graphics, qrCode.Matrix, padding);            }

在WriteableBitmap上繪製二維碼:

const string helloWorld = "Hello World!";QrEncoder qrEncoder = new QrEncoder(ErrorCorrectionLevel.H);QrCode qrCode = new QrCode();qrEncoder.TryEncode(helloWorld, out qrCode);const int moduleSizeInPixels = 5;Renderer renderer = new Renderer(moduleSizeInPixels);   //Black&White is default colour for drawing QrCode//Matrix under qrCode might be null if input string is null or empty. 21 module wide is version 1 QrCode's width. int pixelSize = qrCode.Matrix == null ? renderer.Measure(21) : renderer.Measure(qrCode.Matrix.Width);WriteableBitmap wBitmap = new WriteableBitmap(pixelSize, pixelSize, 96, 96, PixelFormats.Gray8, null);//If wBitmap is null value. renderer will create Gray8 Bitmap as default.renderer.Draw(wBitmap, qrCode.Matrix);    //Default offset position is (0, 0);//Now you can put wBitmap to Image control's Source or use it to create image file. 

 

如果需要把二維碼呈現在WinForm或者WPF應用程式中,可以直接把類庫拖入工具箱,然後直接在表單上拖出控制項。

直接把二維碼儲存到檔案:

            QrEncoder qrEncoder = new QrEncoder(ErrorCorrectionLevel.H);            QrCode qrCode = new QrCode();            qrEncoder.TryEncode(helloWorld, out qrCode);            Renderer renderer = new Renderer(5, Brushes.Black, Brushes.White);            renderer.CreateImageFile(qrCode.Matrix, @"c:\temp\HelloWorld.png", ImageFormat.Png);

 

將二維碼寫入Stream:

            QrEncoder qrEncoder = new QrEncoder(ErrorCorrectionLevel.H);            QrCode qrCode = new QrCode();            qrEncoder.TryEncode(helloWorld, out qrCode);            Renderer renderer = new Renderer(5, Brushes.Black, Brushes.White);            MemoryStream ms = new MemoryStream();            renderer.WriteToStream(qrCode.Matrix, ms, ImageFormat.png);

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.