I am using prawn to create pdf file but it always leaves some spaces/margins around the page. Can't we use whole space of the pdf file not leaving any margins around?

Thanks !!!

link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Are you referring to the page bounds ?

The general space that is consumed on the page can be shown by the example code:

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

This will draw the bounds of the page showing the margin. There is a gap, which is the margins typically defined for the printing area

link|improve this answer
I think there isn't a way to do that. We can't use whole pdf page space. – ashis Dec 8 '10 at 8:32
The code sample was to show the margin spacing that are the defaults within prawn. – Grant Sayer Dec 16 '10 at 3:16
Okay its again padding_box and bounding_box – ashis Aug 29 '11 at 10:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.