This is what I have so far, but I need to set margins:

  def send_fax 
 22     contact = Contact.find_by_id(self.contact_id)
 23     
 24     pdf = Prawn::Document.new
 25     pdf.font "Times-Roman"
 26     pdf.move_down(20)
 27     pdf.text "ATTN: #{contact.first_name} #{contact.last_name}", :size => 24, :style => :bold
 28     pdf.text "RE: #{self.subject}"
 29     pdf.move_down(20)
 30 
 31     pdf.text "#{self.body}"
 32 
 33     OutboundMailer.deliver_fax_email(contact, self, pdf)
 34 
 35   end
link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Prawn::Document.new( :margin => [0,0,0,0] )

:margin:    Sets the margin on all sides in points [0.5 inch]
:left_margin:   Sets the left margin in points [0.5 inch]
:right_margin:  Sets the right margin in points [0.5 inch]
:top_margin:    Sets the top margin in points [0.5 inch]
:bottom_margin: Sets the bottom margin in points [0.5 inch]

http://rdoc.info/github/sandal/prawn/master/Prawn/Document

link|improve this answer
thanks, I couldn't follow the instructions, you made it much clearer – Angela Jan 5 '11 at 16:32
How did you figure this out, I checked the document and I still can't se what to do...should I just set :margin => [0.5,0.5,0.5,0.5] if it is 0.5 inch all around? Do I need to use inch? [0.5 inch]? – Angela Jan 11 '11 at 2:42
[0.5 inch] is the default setting for the given attribute. So, if you don't explicitly set a value for :margin, it will default to a half inch on all 4 sides. If you want to override any of the default values, you should provide a number that corresponds to the number of points you want. There are 72 points per inch. It's a little confusing since the default value is provided in inches, while you set the value in points. It may make more sense if you think of the default value as being [36 points] – George Anderson Jan 13 '11 at 3:59
feedback

Your Answer

 
or
required, but never shown

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