我正在使用:
我在为我的应用生成条形码时遇到问题。我安装了barby 0.5.0,我希望它能解决我的问题。但每次它生成一个文件时,它似乎都被破坏或损坏了。它无法打开。我想知道我在这里做错了什么。
至于堆栈跟踪,确实没有错误。
这是我的代码:
barcodevalue = "00000000000"
full_path = "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) }
render :text => "#{barcode_value}.png has been generated."