Skip to content

Instantly share code, notes, and snippets.

@bradediger
Created October 18, 2011 14:32
Show Gist options
  • Select an option

  • Save bradediger/1295568 to your computer and use it in GitHub Desktop.

Select an option

Save bradediger/1295568 to your computer and use it in GitHub Desktop.
Prawn::Document.new do |pdf|
box = Prawn::Text::Box.new("foo bar baz " * 50, :document => pdf,
:overflow => :expand, :height => 1)
box.render
puts box.height # >> 80.46
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment