ruby-on-rails – 如何在Prawn中设置ruby的边距?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何在Prawn中设置ruby的边距?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是我到目前为止,但是我需要设置边距:
def send_fax 
    contact = Contact.find_by_id(self.contact_id)

    pdf = Prawn::Document.new
    pdf.font "Times-Roman"
    pdf.move_down(20)
    pdf.text "ATTN: #{contact.first_name} #{contact.last_name}",:size =>,:style => :bold
    pdf.text "RE: #{self.subject}"
    pdf.move_down(20)

    pdf.text "#{self.body}"

    OutboundMailer.deliver_fax_email(contact,self,pdf)

  end

解决方法

Prawn :: Document.new(:margin => [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

原文链接:https://www.f2er.com/ruby/271862.html

猜你在找的Ruby相关文章