Documentation ¶
Overview ¶
Package ebarcode Description: 条码工具类
Index ¶
- func E保存条码到文件(条码对象 barcode.Barcode, 文件名 string) error
- func E生成Codabar(条码内容 string) (barcode.Barcode, error)
- func E生成Code128(条码内容 string) (barcode.Barcode, error)
- func E生成Code128无校验(条码内容 string) (barcode.Barcode, error)
- func E生成Code39(条码内容 string, 包含校验和 bool, ASCII模式 bool) (barcode.Barcode, error)
- func E生成Code93(条码内容 string, 包含校验和 bool, ASCII模式 bool) (barcode.Barcode, error)
- func E生成EAN(条码内容 string) (barcode.Barcode, error)
- func E生成PDF417(条码内容 string, 纠错级别 byte) (barcode.Barcode, error)
- func E生成二五条码(条码内容 string, 启用交错编码 bool) (barcode.Barcode, error)
- func E生成二维条码(欲生成的数据 []byte, 最小错误 int, 层数 int) (barcode.Barcode, error)
- func E生成矩阵条码(条码内容 string) (barcode.Barcode, error)
- type E条码
- type E条码接口
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func E保存条码到文件 ¶
E保存条码到文件 保存条码到指定文件路径 参数:
- 条码对象: barcode.Barcode 需要保存的条码对象
- 文件名: string 保存条码的目标文件名
返回值:
- error: 如果保存过程中发生错误,则返回错误
func E生成Codabar ¶
E生成Codabar 生成Codabar条码 参数:
- 条码内容: string 生成条码的内容
返回值:
- barcode.Barcode: 生成的Codabar条码对象
- error: 如果生成过程中发生错误,则返回错误
func E生成Code128 ¶
E生成Code128 生成带校验和的Code128条码 参数:
- 条码内容: string 生成条码的内容
返回值:
- barcode.Barcode: 生成的Code128条码对象
- error: 如果生成过程中发生错误,则返回错误
func E生成Code128无校验 ¶
E生成Code128无校验 生成不带校验和的Code128条码 参数:
- 条码内容: string 生成条码的内容
返回值:
- barcode.Barcode: 生成的无校验和的Code128条码对象
- error: 如果生成过程中发生错误,则返回错误
func E生成Code39 ¶
E生成Code39 生成Code39条码 参数:
- 条码内容: string 生成条码的内容
- 包含校验和: bool 是否包含校验和
- ASCII模式: bool 是否启用ASCII编码模式
返回值:
- barcode.Barcode: 生成的Code39条码对象
- error: 如果生成过程中发生错误,则返回错误
func E生成Code93 ¶
E生成Code93 生成Code93条码 参数:
- 条码内容: string 生成条码的内容
- 包含校验和: bool 是否包含校验和
- ASCII模式: bool 是否启用ASCII编码模式
返回值:
- barcode.Barcode: 生成的Code93条码对象
- error: 如果生成过程中发生错误,则返回错误
func E生成EAN ¶
E生成EAN 生成EAN条码 (根据内容自动生成EAN8或EAN13) 参数:
- 条码内容: string 生成条码的内容
返回值:
- barcode.Barcode: 生成的EAN条码对象
- error: 如果生成过程中发生错误,则返回错误
func E生成PDF417 ¶
E生成PDF417 生成PDF417条码 参数:
- 条码内容: string 生成条码的内容
- 纠错级别: byte 错误校正级别 (范围0-8)
返回值:
- barcode.Barcode: 生成的PDF417条码对象
- error: 如果生成过程中发生错误,则返回错误
func E生成二五条码 ¶
E生成二五条码 生成2of5条码 参数:
- 条码内容: string 生成条码的内容
- 启用交错编码: bool 是否启用交错编码
返回值:
- barcode.Barcode: 生成的2of5条码对象
- error: 如果生成过程中发生错误,则返回错误
Types ¶
Click to show internal directories.
Click to hide internal directories.