updated documentation
This commit is contained in:
parent
f08ed42d89
commit
6c39380327
|
@ -11,8 +11,11 @@ type encodeFn func(content string, eccLevel ErrorCorrectionLevel) (*barcode.BitL
|
|||
type Encoding byte
|
||||
|
||||
const (
|
||||
// Choose best matching encoding
|
||||
Auto Encoding = iota
|
||||
// Encode only numbers [0-9]
|
||||
Numeric
|
||||
// Encode only uppercase letters, numbers and [Space], $, %, *, +, -, ., /, :
|
||||
AlphaNumeric
|
||||
)
|
||||
|
||||
|
|
|
@ -5,9 +5,13 @@ import "math"
|
|||
type ErrorCorrectionLevel byte
|
||||
|
||||
const (
|
||||
// Recovers 7% of data
|
||||
L ErrorCorrectionLevel = iota
|
||||
// Recovers 15% of data
|
||||
M
|
||||
// Recovers 25% of data
|
||||
Q
|
||||
// Recovers 30% of data
|
||||
H
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue