我正在生成一个文档,其中包含流向每个后续页面的数据,每个页面都有一个标准标题。但是,当我使用 repeat(:all) 将标题放在每一页上时,我发现除了第一页之外的每一页上,下一个内容并没有被我放在页面上的标题横幅的大小向下移动.
我生成横幅的代码:
class SmartsoftPdf < Prawn::Document
BOX_MARGIN = 30
RHYTHM = 10
INNER_MARGIN = 30
# Colors
#
BLACK = "000000"
LIGHT_GRAY = "F2F2F2"
GRAY = "DDDDDD"
DARK_GRAY = "333333"
BROWN = "A4441C"
ORANGE = "F28157"
LIGHT_GOLD = "FBFBBE"
DARK_GOLD = "EBE389"
BLUE = "08C"
GREEN = "00ff00"
RED = "ff0000"
def show_header(text,date)
header_box do
image "#{Rails.root}/app/assets/images/smart_records_logo_h60.png", :height => 40
draw_text text,
:at => [80,25], :size => 12, :style => :bold, :color => BLUE
draw_text "Date: #{ausDate(date)}",
:at => [bounds.right - 100,bounds.top - 15], :size => 10 if date
end
end
def header_box(&block)
bounding_box([-bounds.absolute_left, cursor + BOX_MARGIN + 8],
:width => bounds.absolute_left + bounds.absolute_right,
:height => BOX_MARGIN*2) do
fill_color LIGHT_GRAY
fill_rectangle([bounds.left, bounds.top],
bounds.right,
bounds.top - bounds.bottom)
fill_color BLACK
move_down(RHYTHM)
indent(BOX_MARGIN, &block)
end
stroke_color GRAY
stroke_horizontal_line(-BOX_MARGIN, bounds.width + BOX_MARGIN, :at => cursor)
stroke_color BLACK
move_down(RHYTHM*4)
end
end
然后在 pdf 生成本身中,我这样做:
repeat(:all) do
show_header("Custom Report",DateTime.now())
end
但是,当我开始将内容放到页面上时,我希望当内容溢出到下一页时,内容将显示在标题之后。我发现标题与内容重叠。
这是说明问题的图像:http: //i.imgur.com/mSy2but.png
我是否错误地构建了标题框?我是否需要做一些额外的事情才能使溢出到下一页的内容被下推到适当的数量?