has_barcode icon indicating copy to clipboard operation
has_barcode copied to clipboard

Nice class method wrapper for barby

Results 8 has_barcode issues
Sort by recently updated
recently updated
newest added

Hi, it would be nice to be able to choose the 128 mode. BARBY works fine with A, but barby (smallcaps) doesn't. My suggestion is to add a new option...

Is it possible to save the barcode svg that is generated, to the :barcode (TEXT) attribute on my model's table and then retrieve it with inline_svg? Or can you only...

Pull this request and release new version like v0.2.4.

user modal has: has_barcode :barcode, :outputter => :svg, :type => :code_39, :value => Proc.new { |c| c.tehID } def tehID self.nid end (tried :svg and :png[with chunky_png installed] both give...

Hi. I found some bugs when using has_barcode with [Prawn](https://github.com/prawnpdf/prawn) & [Prawn::Rails](https://github.com/Whoops/prawn-rails). I wrote model code below. ``` has_barcode :barcode, :outputter => :pdf, :type => :code_39, :value => Proc.new{|p| p.random_string_of_numbers}...

Hi, I'm using has_barcode here, and I'd like to define the barcode type based on the type the user defined in a form. it is possible to give me an...