Skip to content

Instantly share code, notes, and snippets.

@bhh
Created December 21, 2014 22:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bhh/62462d560e83b6e33531 to your computer and use it in GitHub Desktop.
Save bhh/62462d560e83b6e33531 to your computer and use it in GitHub Desktop.
require 'prawn'
require 'barby'
require 'barby/barcode/code_128'
require 'barby/outputter/prawn_outputter'
barcode = Barby::Code128B.new('1234567890')
outputter = Barby::PrawnOutputter.new(barcode)
pdf = Prawn::Document.new
pdf.text "bla"
outputter.annotate_pdf(pdf)
pdf.render_file 'test.pdf'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment