2009-12-01から1ヶ月間の記事一覧

prawn:Prawn::Text#text_box :align

#!/usr/bin/env ruby require "prawn" pdf = Prawn::Document.new pdf.text_box "Will be wrapped when it hits the edge of your bounding box", {} pdf.text_box "This will be centered", :align => :center pdf.text_box "This will be right aligned", …