4

我正在生成一个文档,其中包含流向每个后续页面的数据,每个页面都有一个标准标题。但是,当我使用 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

我是否错误地构建了标题框?我是否需要做一些额外的事情才能使溢出到下一页的内容被下推到适当的数量?

4

1 回答 1

3

好的。我自己解决了这个问题。最新版本的虾有更好的方法来处理这种情况。当您使用 repeat(:all) 时,页面会在文档创建后重新打开,然后添加您的内容创建项目。这不会将页面向下推。将此页眉添加到每个页面的正确方法是使用“画布”方法,该方法允许您在页边距之外进行操作。使用canvas在页面顶部绘制一个框,并设置页面top_margin将所有内容推送到banner下方。

canvas do
      bounding_box([bounds.left,bounds.top],
                   :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
 end

在文档创建...

 def initialize(options = {})
    super(:page_layout => :landscape,:top_margin => HEIGHT_OF_BANNER)
 end
于 2013-04-15T17:23:36.857 回答