Skip to content

Instantly share code, notes, and snippets.

@bradediger
Created October 18, 2011 15:29
Show Gist options
  • Save bradediger/1295715 to your computer and use it in GitHub Desktop.
Save bradediger/1295715 to your computer and use it in GitHub Desktop.
Prawn::Document.generate("test_height.pdf") do |pdf|
box = Prawn::Text::Box.new("foo bar baz " * 50, :document => pdf,
:overflow => :shrink_to_fit, :height => 20)
box.render
puts box.height # >> 19.422
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment