0.13.2" 我只能嵌入图像或文本。但是,两者都不是。请帮忙。 Rails-6ren">
gpt4 book ai didi

ruby-on-rails - Prawn - 在表格单元格中添加图像和文本

转载 作者:行者123 更新时间:2023-12-05 00:27:12 28 4
gpt4 key购买 nike

是否可以嵌入 图片 连同 正文 在使用 gem prawn 的表格单元格中?

我正在使用 gem "prawn", "~> 0.13.2"
我只能嵌入图像或文本。但是,两者都不是。请帮忙。

Rails 版本:3.2.13 和 Ruby 2.0.0

最佳答案

以下是手册中有关如何将图像和文本插入 PDF 文档的代码:

text "Scale by setting only the width"
image "#{Prawn::DATADIR}/images/pigs.jpg", :width => 150
move_down 20

text "Scale by setting only the height"
image "#{Prawn::DATADIR}/images/pigs.jpg", :height => 100
move_down 20

text "Stretch to fit the width and height provided"
image "#{Prawn::DATADIR}/images/pigs.jpg", :width => 500, :height => 100

以下是手册中有关如何将图像和文本插入 PDF 文档的表格单元格的代码:
cell_1 = make_cell(:content => "this row content comes directly ")
cell_2 = make_cell(:content => "from cell objects")
two_dimensional_array = [ ["..."], ["subtable from an array"], ["..."] ]
my_table = make_table([ ["..."], ["subtable from another table"], ["..."] ])
image_path = "#{Prawn::DATADIR}/images/stef.jpg"

table([ ["just a regular row", "", "", "blah blah blah"],
[cell_1, cell_2, "", ""],
["", "", two_dimensional_array, ""],
["just another regular row", "", "", ""],
[{:image => image_path}, "", my_table, ""]])

有关自定义表格单元格图像的更多信息: Check out the Prawn documentation

关于ruby-on-rails - Prawn - 在表格单元格中添加图像和文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21112037/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com