我正在使用 Axlsx gem 创建一个 excel 文件,我想添加一个图像。我目前能够添加图像,但它似乎以使其浮动在其他内容之上的方式添加图像。
我希望它存在于一个单元格中。这可能吗?
这是一个古老的问题,但我们永远不知道。
这篇文章中有一个答案:Adding image to Excel file generated by Axlsx.?
您可以使用 image.start_at 指定要从中放置图像的单元格
sheet.add_image(:image_src => img, :noSelect => true, :noMove => true, :hyperlink=>"http://axlsx.blogspot.com") do |image|
image.width = 7
image.height = 6
image.hyperlink.tooltip = "Labeled Link"
image.start_at 2, 2
end
高温高压