Rails Prawn - 有边的长文本

时间:2017-05-23 15:35:32

标签: ruby-on-rails ruby pdf prawn

我有一个长文本溢出到几个PDF页面。我想边插这段文字。我试过以下代码:

    column_box([0, cursor], :columns => 1, :width => bounds.width) do
      stroke_color "000000"
      stroke_bounds
      text(budget.additional_info, {size: 20})
    end

但它不起作用。它只是在第一页的文本顶部打印一个边框。

1 个答案:

答案 0 :(得分:0)

我今天遇到了同样的问题。您必须将stroke_bounds放在column_box

的末尾
column_box([0, cursor], :columns => 1, :width => bounds.width) do
  text(budget.additional_info, {size: 20})
  stroke_color "000000"
  stroke_bounds
end

抱歉我的英语不好。素不相识!