forked from dlitz/barby
-
Notifications
You must be signed in to change notification settings - Fork 0
The Ruby barcode generator
License
PatientWay/barby
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Barby is a Ruby barcode generator. It does not depend on other libraries (for the core functionality) and is easily extentable. The barcode objects are separated from the process of generating graphical (or other) representations. A barcode's only responsibility is to provide a string representation consisting of 1s and 0s representing bars and spaces. This string can then be used to generate (for example) an image with the RMagickOutputter, or an ASCII string such as the one below. See Barby::Barcode and Barby::Outputter for more information. require 'barby' require 'barby/outputter/ascii_outputter' barcode = Barby::Code128B.new('BARBY') puts barcode.to_ascii ## # # # # ## # # ## ## # ### # # ## ### ## # ## ### ### ## ### # ## ## # # # # ## # # ## ## # ### # # ## ### ## # ## ### ### ## ### # ## ## # # # # ## # # ## ## # ### # # ## ### ## # ## ### ### ## ### # ## ## # # # # ## # # ## ## # ### # # ## ### ## # ## ### ### ## ### # ## ## # # # # ## # # ## ## # ### # # ## ### ## # ## ### ### ## ### # ## ## # # # # ## # # ## ## # ### # # ## ### ## # ## ### ### ## ### # ## ## # # # # ## # # ## ## # ### # # ## ### ## # ## ### ### ## ### # ## ## # # # # ## # # ## ## # ### # # ## ### ## # ## ### ### ## ### # ## ## # # # # ## # # ## ## # ### # # ## ### ## # ## ### ### ## ### # ## ## # # # # ## # # ## ## # ### # # ## ### ## # ## ### ### ## ### # ## B A R B Y
About
The Ruby barcode generator
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published