0 Star 0 Fork 0

蒋佳李/vault

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
api
audit
builtin
command
http
plugins
sdk
framework
helper
armon
barcode
qr
utils
barcode.go
scaledbarcode.go
base62
cache
cacheutil
certutil
cidrutil
circonus-labs
cleanhttp
columnize
complete
compressutil
consts
crypto
cryptoutil
dhutil
duo_api
errors
errutil
errwrap
fatih
finance
flag-kv
flag-slice
forwarding
gabs
gated-writer
glob
hclutil
homedir
httpunix
identity
iradix
isbadcipher
jose
jsonutil
kdf
keysutil
kr
kv-builder
listenerutil
locksutil
logging
lru
masterminds
mattn
memdb
mergo
metricsutil
mfa
microsoft/winio
mitchellh
mlock
multierror
namespace
oidc
otp
parseutil
password
pathmanager
pbutil
pgpkeys
pluginutil
policies
policyutil
prometheus
proxyutil
quantile
reload
retryablehttp
rootcerts
run
salt
sockaddr
speakeasy
statsd
storagepacker
strutil
syslog
tlsutil
uuid
version
wrapping
xor
xstrings
xxhash
xxuuid
yamux
logical
physical
plugin
version
shamir
vault
.gitignore
LICENSE
Makefile
README.md
build.bat
go.mod
go.sum
main.go
克隆/下载
barcode.go 1014 Bytes
一键复制 编辑 原始数据 按行查看 历史
蒋佳李 提交于 4年前 . 更新
package barcode
import "image"
const (
TypeAztec = "Aztec"
TypeCodabar = "Codabar"
TypeCode128 = "Code 128"
TypeCode39 = "Code 39"
TypeCode93 = "Code 93"
TypeDataMatrix = "DataMatrix"
TypeEAN8 = "EAN 8"
TypeEAN13 = "EAN 13"
TypePDF = "PDF417"
TypeQR = "QR Code"
Type2of5 = "2 of 5"
Type2of5Interleaved = "2 of 5 (interleaved)"
)
// Contains some meta information about a barcode
type Metadata struct {
// the name of the barcode kind
CodeKind string
// contains 1 for 1D barcodes or 2 for 2D barcodes
Dimensions byte
}
// a rendered and encoded barcode
type Barcode interface {
image.Image
// returns some meta information about the barcode
Metadata() Metadata
// the data that was encoded in this barcode
Content() string
}
// Additional interface that some barcodes might implement to provide
// the value of its checksum.
type BarcodeIntCS interface {
Barcode
CheckSum() int
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/jiangjiali/vault.git
git@gitee.com:jiangjiali/vault.git
jiangjiali
vault
vault
v1.1.8

搜索帮助