因公司需要完成一條形碼打印問題,所以在找到一些資料做了一個Demo
特請教!
不知道此條形碼是否正確:
圖:
源碼:
代碼
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
namespace Paabo.WordProcessing.Common
{
public class BarCodeProvider
{
#region 單例
private static BarCodeProvider _Intance;
public static BarCodeProvider Intance
{
get
{
if (_Intance == null)
{
_Intance = new BarCodeProvider();
}
return _Intance;
}
}
#endregion
#region Size
/// <summary>
/// 圖片寬度
/// </summary>
private int _Width = 200;
public int Width
{
get { return _Width; }
set { _Width = value; }
}
/// <summary>
/// 圖片高度
/// </summary>
private int _Height = 80;
public int Height
{
get { return _Height; }
&nbs