1

我正在使用 prawn 创建 pdf 文件,但它总是在页面周围留下一些空格/边距。我们不能使用 pdf 文件的整个空间而不留下任何边距吗?

谢谢 !!!

4

1 回答 1

1

你指的是页面边界吗?

页面上消耗的一般空间可以通过示例代码显示:

require 'prawn/core'
require 'prawn/layout'

Prawn::Document.generate('padded_box.pdf') do
  stroke_bounds
  text "Margin box"
  padded_box(25) do
    stroke_bounds
    text "Bounding box padded by 25 on all sides from the margins"
    padded_box(50) do
      stroke_bounds
      text "Bounding box padded by 50 on all sides from the parent bounds"
    end
  end
end

这将绘制显示页边距的页面边界。有一个间隙,这是通常为打印区域定义的边距

于 2010-12-02T22:23:56.390 回答