Windows Phone 7 實戰第二天 二維碼QRcodeC#利用QrCode.Net產生二維碼(Qr碼)

來源:互聯網
上載者:User

越來越多的收據具備自動對焦的拍攝功能,這也意味著這些手機可以具備條碼掃描功能,手機具備條碼掃描功能,可以最佳化購物流程,快速儲存電子名片(二維碼)等。

QR 代碼是二維條碼的一種,QR 來自英文 “Quick Response” 的縮寫,即快速反應的意思,源自發明者希望 QR 代碼可讓其內容快速被解碼。QR碼比普通條碼可儲存更多資料,亦無需像普通條碼般在掃描時需直線對準掃描器。 QR 代碼呈正方形,只有黑白兩色。在4個角落的其中3個,印有較小,像“回”字的的正方圖案。這 3 個是協助解碼軟體定位的圖案,使用者不需要對準,無論以任何角度掃描,資料仍可正確被讀取。 更詳細介紹。

QRCode在生活中有著多方面的應用,例如火車票上有QRCode可以用來儲存資訊,現在很多手機軟體都提供掃描QRCode下載,而一號店網上商店在上海地鐵那裡開設有“牆貼超市”,路人只要用手機掃描某商品的QRCode即可下單購買等等。

這次我們要做的應用就是二維碼的產生,讀取器。需要一個Windows Phone 7上的類庫來支援。在網上搜尋可用的條碼識別庫。 這個是效果最好的了,項目在http://code.google.com/p/zxing/, 也有.NET的包。不過代碼是2010的了,貌似很久沒有更新了。

建立QRCode的核心代碼

    public static WriteableBitmap CreateBarcode()
    {
            WriteableBitmap wb = null;
            QRCodeWriter writer = new QRCodeWriter();
            ByteMatrix bitMatrix = null;
            try
            {
                bitMatrix = writer.encode("HTTP://WWW.GOOGLE.COM", BarcodeFormat.QR_CODE, 300, 300);
                wb = ConvertByteMartixToWriteableBitmap(bitMatrix);
            }
            catch (WriterException e)
            {
            }
            catch (IOException e)
            {
            }
            return wb;
        }

         public static WriteableBitmap ConvertByteMartixToWriteableBitmap(ByteMatrix bm)  
         {         
             WriteableBitmap wb = new WriteableBitmap(bm.Width, bm.Height);
             for (int x = 0; x <= wb.PixelWidth - 1; x++)       
             {        
                 for (int y = 0; y <= wb.PixelHeight - 1; y++)     
                 {                
                     if (bm.Array[y][x] == -1)   
                     {             
                         //白色           
                         wb.Pixels[wb.PixelWidth * y + x] = BitConverter.ToInt32(BitConverter.GetBytes(0xffffffff), 0);    
                     }              
                     else      
                     {          
                         //黑色      
                         wb.Pixels[wb.PixelWidth * y + x] = BitConverter.ToInt32(BitConverter.GetBytes(0xff000000), 0);  
                     }           
                 }          
             }        
             return wb; 
         }

 

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

關於二維碼分塊上色(彩色二維碼)的演算法研究

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.