如何在 Ruby/Prawn 中为大表设置不同的页眉/页脚?

发布于 2024-10-21 06:18:25 字数 245 浏览 4 评论 0原文

我想用 ruby​​ 和 prawn(0.8.4) gem 生成一个 pdf。 pdf 的第一页应具有与后续页面不同的页眉/页脚。数据将显示在表格中,但该表格显示在多个页面上。

示例:

  • 第一页的页眉高度应为 60.mm
  • 表格从第一页开始,
  • 第二页页眉下方应有高度为 30.mm 的页眉 表格
  • 在第二页继续,低于第二页较小的标题

你看到我的问题了吗?

I wanna generate a pdf with ruby and the prawn(0.8.4) gem. the first page of the pdf should have a different header/footer than the following pages. The data will be shown in a table, but the table is shown on multiple pages.

Example:

  • first page should have an header height of 60.mm
  • the table starts at the first page, below the header
  • on the second page there should be a header with a height of 30.mm
  • the table continues on the second page, below the smaller header

do you see my problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

很快妥协 2024-10-28 06:18:25

解决了。

require "rubygems"
require "prawn"
require "prawn/core"
require "prawn/layout"
require "prawn/measurement_extensions"

Prawn::Document.generate("test.pdf", :page_size => "A3", :page_layout => :landscape, :margin => 0) do

  padded_box 30.mm do
    move_down(40.mm)
    items = 100.times.map {|i| [i, i]}
    table items, :border_style => :underline_header, :headers => ["Column#1", "Column#2"]    
  end

  page_count.times do |i|
    page_num = i+1
    go_to_page(page_num)
    if page_num == 1
      # header of first page
      text_box "header#1", :at => [30.mm, 290.mm], :size => 18
      image "logo.png", :at => [12.mm,(297-15.78).mm]
    else
      # header 2..n
      text_box "header#2..n", :at => [30.mm, 290.mm], :size => 12
    end  
  end

end

solved.

require "rubygems"
require "prawn"
require "prawn/core"
require "prawn/layout"
require "prawn/measurement_extensions"

Prawn::Document.generate("test.pdf", :page_size => "A3", :page_layout => :landscape, :margin => 0) do

  padded_box 30.mm do
    move_down(40.mm)
    items = 100.times.map {|i| [i, i]}
    table items, :border_style => :underline_header, :headers => ["Column#1", "Column#2"]    
  end

  page_count.times do |i|
    page_num = i+1
    go_to_page(page_num)
    if page_num == 1
      # header of first page
      text_box "header#1", :at => [30.mm, 290.mm], :size => 18
      image "logo.png", :at => [12.mm,(297-15.78).mm]
    else
      # header 2..n
      text_box "header#2..n", :at => [30.mm, 290.mm], :size => 12
    end  
  end

end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文