There must be a gem for thatSure enough, the barby gem. It allows you to output your barcode as png, gif, svg, pdf, etc...
In my case I generated png barcodes and included image references to those in my view files.
Sample code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Gemfile, run bundle install after adding | |
gem 'barby' | |
gem 'chunky_png' | |
# some code to generate the png file using 3 of 9 barcode style | |
require 'barby' | |
require 'barby/barcode/code_39' | |
require 'barby/outputter/png_outputter' | |
barcode_value = "099999333" | |
full_path = "/somewhere/barcode_#{barcode_value}.png" | |
barcode = Barby::Code39.new(barcode_value) | |
File.open(full_path, 'w') { |f| f.write barcode.to_png(:margin => 3, :xdim => 2, :height => 55) } |
There is no pixel setting, it uses some other type of unit to determine size; using the xdim, margin and height options you can tweak the size, but I found that it was not very precise - for my use case it was good enough.
The generated barcode does not include the value, it is just the image which can be scanned using a barcode scanner, but it would be nice if there was an option to include the value below that. This is somewhat trivial to add in your view using html.
Overall I was really pleased with this gem!
Resources
4 comments:
Im getting
No such file or directory - /public/barcodes/barcode_BARBY.png
Is there anyway to not to create the png and then display it from public resources? like streaming each time i call a coupon for instance?.
Thanks
Try setting your path to "#{Rails.root}/public/barcodes"
Perfect, thanks. How can i display the value at the bottom of the same image?
As far as i know the gem does not support that feature. You need to add that text to your pdf, html, etc... Might want to check the google groups link above for additional help
Post a Comment