2

我有一些可变长度的文本要插入到 Prawn 边界框中。根据文本的长度,结果将是任意数量的页面,每个页面都有一个边界框。我想要抚摸这些边界框中的每一个。我可以抚摸第一个框和最后一个框,但不知道如何抚摸中间的那些...

  bounding_box([0, 500], :width => 200, :height => 150) do
    stroke_bounds # This will stroke the first box
    text "This text will fill up many boxes. " * 100
    stroke_bounds # This will stroke the last box
  end
4

0 回答 0