画像をセルの中央に配置
Axlsxを使用してExcelに画像を添付しています。
セルの中央に画像を移動する方法はありませんでしょうか?
以下のプログラムを参考にして作成しています。
https://stackoverflow.com/questions/10714193/adding-image-to-excel-file-generated-by-axlsx
wb.add_worksheet(:name => "Image with Hyperlink") do |sheet|
img = File.expand_path('../image1.jpeg', __FILE__)
# specifying the :hyperlink option will add a hyper link to your image.
# @note - Numbers does not support this part of the specification.
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
end