文件名称:如何采用C#绘制39条形码
文件大小:7KB
文件格式:TXT
更新时间:2012-05-22 12:52:12
条形码, C#
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
namespace CjLibrary
{
public class CjBarCode39 : CjBarCode
{
private double wideToNarrowRatio = 3.0;
public double WideToNarrowRatio
{
get { return wideToNarrowRatio; }
set { wideToNarrowRatio = value; }
}
private int weight = 1;
public int Weight
{
get { return weight; }
set { weight = value; }
}
///