2009-09-19から1日間の記事一覧

prawn:Prawn::Document::Text#text

まんま #!/usr/bin/env ruby require "prawn" pdf = Prawn::Document.new pdf.text "Hello World", :at => [100,100] pdf.text "Goodbye World", :at => [50,50], :size => 16 pdf.text "Will be wrapped when it hits the edge of your bounding box" pdf.t…