場景 使用Zxing生成二維碼時,返回的是Bitmap,現在要將其顯示。 Winform中顯示照片的控制項是pictureBox 實現 效果 ...
場景
使用Zxing生成二維碼時,返回的是Bitmap,現在要將其顯示。
Winform中顯示照片的控制項是pictureBox
實現
//二維碼要存儲的內容 string codeString = "測試"; //生成二維碼並返回Bitmap Bitmap bitmap= ZxingHelper.CreateQRCode(codeString); //保存圖片到本地 //bitmap.Save(@"C:\Users\Administrator\Desktop\a.png"); //將Bitmap轉換成Image對象 Image img = Image.FromHbitmap(bitmap.GetHbitmap()); //設置pictureBox的圖片源 this.pictureBox1.Image = img;
效果