程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# 利用BarcodeLib.dll生成條形碼,

C# 利用BarcodeLib.dll生成條形碼,

編輯:C#入門知識

C# 利用BarcodeLib.dll生成條形碼,


首先效果:

1:首先下載BarcodeLib.dll 下載地址 http://pan.baidu.com/share/link?shareid=2590968386&uk=2148890391&fid=1692834292 如果不存在了則自行搜索下載。

1.BarcodeLib.dll 一維條碼庫支持以下條碼格式

UPC-A

UPC-E

UPC 2 Digit Ext.

UPC 5 Digit Ext.

EAN-13

JAN-13

EAN-8

ITF-14

Codabar

PostNet

Bookland/ISBN

Code 11

Code 39

Code 39 Extended

Code 93

LOGMARS

MSI

Interleaved 2 of 5

Standard 2 of 5

Code 128

Code 128-A

Code 128-B

Code 128-C

Telepen

然後項目中添加引用

[csharp] view plaincopy在CODE上查看代碼片派生到我的代碼片
  1. private void button6_Click(object sender, EventArgs e)  
  2.     {  
  3.         System.Drawing.Image image;  
  4.         int width = 148, height = 55;  
  5.         string fileSavePath = AppDomain.CurrentDomain.BaseDirectory + "BarcodePattern.jpg";  
  6.         if (File.Exists(fileSavePath))  
  7.             File.Delete(fileSavePath);  
  8.         GetBarcode(height, width, BarcodeLib.TYPE.CODE128, "20131025-136", out image, fileSavePath);  
  9.   
  10.         pictureBox1.Image  = Image.FromFile("BarcodePattern.jpg");  
  11.     }  
  12.     public static void GetBarcode(int height, int width, BarcodeLib.TYPE type, string code, out System.Drawing.Image image, string fileSaveUrl)  
  13.     {  
  14.         try  
  15.         {  
  16.             image = null;  
  17.             BarcodeLib.Barcode b = new BarcodeLib.Barcode();  
  18.             b.BackColor = System.Drawing.Color.White;//圖片背景顏色  
  19.             b.ForeColor = System.Drawing.Color.Black;//條碼顏色  
  20.             b.IncludeLabel = true;  
  21.             b.Alignment = BarcodeLib.AlignmentPositions.LEFT;  
  22.             b.LabelPosition = BarcodeLib.LabelPositions.BOTTOMCENTER;  
  23.             b.ImageFormat = System.Drawing.Imaging.ImageFormat.Jpeg;//圖片格式  
  24.             System.Drawing.Font font = new System.Drawing.Font("verdana", 10f);//字體設置  
  25.             b.LabelFont = font;  
  26.             b.Height = height;//圖片高度設置(px單位)  
  27.             b.Width = width;//圖片寬度設置(px單位)  
  28.   
  29.             image = b.Encode(type, code);//生成圖片  
  30.             image.Save(fileSaveUrl, System.Drawing.Imaging.ImageFormat.Jpeg);  
  31.                
  32.         }  
  33.         catch (Exception ex)  
  34.         {  
  35.   
  36.             image = null;  
  37.         }  
  38.     }  

簡單的寫一下。詳細的去 http://www.barcodelib.com/net_barcode/main.html 這裡看。

 

 

 

利用 zxing.dll生成條形碼和二維碼  下載地址http://zxingnet.codeplex.com/

ZXing (ZebraCrossing)是一個開源的,支持多種格式的條形碼圖像處理庫, 。使用該類庫可以方便地實現二維碼圖像的生成和解析。 

下載zxing.dll 項目參照引用

[csharp] view plaincopy在CODE上查看代碼片派生到我的代碼片
  1. {  
  2.                 MultiFormatWriter mutiWriter = new com.google.zxing.MultiFormatWriter();  
  3.                 ByteMatrix bm = mutiWriter.encode(txtMsg.Text, com.google.zxing.BarcodeFormat.QR_CODE, 300, 300);  
  4.                 Bitmap img = bm.ToBitmap();  
  5.                 pictureBox1.Image = img;  
  6.   
  7.                 //自動保存圖片到當前目錄  
  8.                 string filename = System.Environment.CurrentDirectory + "\\QR" + DateTime.Now.Ticks.ToString() + ".jpg";  
  9.                 img.Save(filename, System.Drawing.Imaging.ImageFormat.Jpeg);  
  10.                 lbshow.Text = "圖片已保存到:" + filename;  
  11.             }  
  12.             catch (Exception ee)  
  13.             { MessageBox.Show(ee.Message); }  



 

 

利用 QrCodeNet.dll生成條形碼和二維碼  下載地址http://qrcodenet.codeplex.com/

下載QrCodeNet.dll 項目參照引用

 

[csharp] view plaincopy在CODE上查看代碼片派生到我的代碼片
  1.   private void button2_Click(object sender, EventArgs e)  
  2.         {  
  3.             var codeParams = CodeDescriptor.Init(ErrorCorrectionLevel.H, textBox1.Text.Trim(), QuietZoneModules.Two, 5);  
  4.   
  5.             codeParams.TryEncode();  
  6.   
  7.             // Render the QR code as an image  
  8.             using (var ms = new MemoryStream())  
  9.             {  
  10.                 codeParams.Render(ms);  
  11.   
  12.                 Image image = Image.FromStream(ms);  
  13.                 pictureBox1.Image = image;  
  14.                 if (image != null)  
  15.                     pictureBox1.SizeMode = image.Height > pictureBox1.Height ? PictureBoxSizeMode.Zoom : PictureBoxSizeMode.Normal;  
  16.             }  
  17.   
  18.         }  
  19.  /// <summary>  
  20.     /// Class containing the description of the QR code and wrapping encoding and rendering.  
  21.     /// </summary>  
  22.     internal class CodeDescriptor  
  23.     {  
  24.         public ErrorCorrectionLevel Ecl;  
  25.         public string Content;  
  26.         public QuietZoneModules QuietZones;  
  27.         public int ModuleSize;  
  28.         public BitMatrix Matrix;  
  29.         public string ContentType;  
  30.   
  31.         /// <summary>  
  32.         /// Parse QueryString that define the QR code properties  
  33.         /// </summary>  
  34.         /// <param name="request">HttpRequest containing HTTP GET data</param>  
  35.         /// <returns>A QR code descriptor object</returns>  
  36.         public static CodeDescriptor Init(ErrorCorrectionLevel level, string content, QuietZoneModules qzModules, int moduleSize)  
  37.         {  
  38.             var cp = new CodeDescriptor();  
  39.   
  40.             //// Error correction level  
  41.             cp.Ecl = level;  
  42.             //// Code content to encode  
  43.             cp.Content = content;  
  44.             //// Size of the quiet zone  
  45.             cp.QuietZones = qzModules;  
  46.             //// Module size  
  47.             cp.ModuleSize = moduleSize;  
  48.             return cp;  
  49.         }  
  50.   
  51.         /// <summary>  
  52.         /// Encode the content with desired parameters and save the generated Matrix  
  53.         /// </summary>  
  54.         /// <returns>True if the encoding succeeded, false if the content is empty or too large to fit in a QR code</returns>  
  55.         public bool TryEncode()  
  56.         {  
  57.             var encoder = new QrEncoder(Ecl);  
  58.             QrCode qr;  
  59.             if (!encoder.TryEncode(Content, out qr))  
  60.                 return false;  
  61.   
  62.             Matrix = qr.Matrix;  
  63.             return true;  
  64.         }  
  65.   
  66.         /// <summary>  
  67.         /// Render the Matrix as a PNG image  
  68.         /// </summary>  
  69.         /// <param name="ms">MemoryStream to store the image bytes into</param>  
  70.         internal void Render(MemoryStream ms)  
  71.         {  
  72.             var render = new GraphicsRenderer(new FixedModuleSize(ModuleSize, QuietZones));  
  73.             render.WriteToStream(Matrix, System.Drawing.Imaging.ImageFormat.Png, ms);  
  74.             ContentType = "image/png";  
  75.         }  
  76.     }  


效果:

參考地址:

http://www.cnblogs.com/mzlee/archive/2011/03/19/Lee_Barcode.html

http://blog.163.com/smxp_2006/blog/static/588682542010215163803/

http://q.cnblogs.com/q/15253/

http://www.csharpwin.com/csharpspace/13364r9803.shtml

http://www.2cto.com/kf/201304/203035.html


C:\

可以的

參考這個對C盤進行清理:
1.關閉系統還原:我的電腦屬性/系統還原/關閉所有磁盤上的系統還原,但是以後就不能用系統還原了!
2.關閉系統休眠:控制面板/電源/休眠/在啟動系統休眠前面的勾去掉
3.移動虛擬內存,我的電腦屬性/高級/性能/設置/高級/更改/選C盤也就是系統盤,選無分頁面,然後把虛擬內存設置到其磁盤,要剩余磁盤空間多的磁盤,比如D,E,F等盤. 設成內存的1.5~2.5倍,大小可設成一樣!
5.清理IE臨時文件夾,internet選項,刪除臨時文件和脫機文件
6.刪除系統日志和程序日志,我的電腦/控制面板/管理工具/計算機管理/事件查看器/應用程序,鼠標右鍵/清除所事件,在依次清除系統日志
7.清理系統緩存:2000系統是:C:\WINNT\system32\dllcache下的所有文件
XP系統是:C:\windows\system32\dllcache下的所有文件 清理系統緩存(打開我的電腦/工具/文件和文件夾選項/隱藏受保護的系統文件的勾去掉在把顯示全部文件勾上)。也可以直接運行sfc.exe /purgecache命令自動刪除。
8.清空回收站
9.刪除c:\windows\SoftwareDistribution\Download下的文件(系統更新時下載的文件如你裝好了更新也就沒有用了)
10.刪除c:\windows\RegisteredPackages下所有目錄
11.刪除C:\WINDOWS\Downloaded Program Files下所有的文件
12.我的電腦 文件夾選項 查看 隱藏已知受系統保護的文件勾去掉,顯示所有文件勾上確定。
13.刪除c:\windows\所有帶$8882305$的文件(系統更新後的備份文件)

zhidao.baidu.com/question/11035955.html
zhidao.baidu.com/question/12223613.html
zhidao.baidu.com/question/14874715.html
......余下全文>>
 

C:\

可以的

參考這個對C盤進行清理:
1.關閉系統還原:我的電腦屬性/系統還原/關閉所有磁盤上的系統還原,但是以後就不能用系統還原了!
2.關閉系統休眠:控制面板/電源/休眠/在啟動系統休眠前面的勾去掉
3.移動虛擬內存,我的電腦屬性/高級/性能/設置/高級/更改/選C盤也就是系統盤,選無分頁面,然後把虛擬內存設置到其磁盤,要剩余磁盤空間多的磁盤,比如D,E,F等盤. 設成內存的1.5~2.5倍,大小可設成一樣!
5.清理IE臨時文件夾,internet選項,刪除臨時文件和脫機文件
6.刪除系統日志和程序日志,我的電腦/控制面板/管理工具/計算機管理/事件查看器/應用程序,鼠標右鍵/清除所事件,在依次清除系統日志
7.清理系統緩存:2000系統是:C:\WINNT\system32\dllcache下的所有文件
XP系統是:C:\windows\system32\dllcache下的所有文件 清理系統緩存(打開我的電腦/工具/文件和文件夾選項/隱藏受保護的系統文件的勾去掉在把顯示全部文件勾上)。也可以直接運行sfc.exe /purgecache命令自動刪除。
8.清空回收站
9.刪除c:\windows\SoftwareDistribution\Download下的文件(系統更新時下載的文件如你裝好了更新也就沒有用了)
10.刪除c:\windows\RegisteredPackages下所有目錄
11.刪除C:\WINDOWS\Downloaded Program Files下所有的文件
12.我的電腦 文件夾選項 查看 隱藏已知受系統保護的文件勾去掉,顯示所有文件勾上確定。
13.刪除c:\windows\所有帶$8882305$的文件(系統更新後的備份文件)

zhidao.baidu.com/question/11035955.html
zhidao.baidu.com/question/12223613.html
zhidao.baidu.com/question/14874715.html
......余下全文>>
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved