本站源代码
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

22 lines
455B

  1. package barcode
  2. import "image"
  3. // Contains some meta information about a barcode
  4. type Metadata struct {
  5. // the name of the barcode kind
  6. CodeKind string
  7. // contains 1 for 1D barcodes or 2 for 2D barcodes
  8. Dimensions byte
  9. }
  10. // a rendered and encoded barcode
  11. type Barcode interface {
  12. image.Image
  13. // returns some meta information about the barcode
  14. Metadata() Metadata
  15. // the data that was encoded in this barcode
  16. Content() string
  17. CheckSum() int
  18. }
上海开阖软件有限公司 沪ICP备12045867号-1