我似乎无法使用axlsx.gem在xlsx的注释中添加背景图片
我似乎找不到任何有关我的问题的信息,也许您可以在此谢谢我!
p = Axlsx::Package.new
filename = File.join Rails.root, 'tmp', 'img', 'ariba.jpg'
img = File.expand_path(filename, __FILE__)
wb = p.workbook
wb.add_worksheet(:name => 'costing') do |sheet|
sheet.add_row ['Can we build it?']
sheet.add_comment :ref => 'A1', :author => 'Bob', :text => 'Yes We Can! -
but I dont think you need to know about it!', :image_src => img, :visible => false
end
p.use_shared_strings = true
p.serialize('sample.xlsx')
我可以添加评论,但是不能在评论上添加背景图片。