I am generation pdfs with prawn. I have an issue of understanding the height calculation of a bounding_box.
Here is my code
# -*- encoding : utf-8 -*-
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '../..', 'lib'))
require 'rubygems'
require 'prawn'
require 'prawn/security'
require 'prawn/layout'
require 'enumerator'
Prawn::Document.generate("test.pdf") do
text "the cursor is here: #{cursor}"
header = nil
repeat :all do
# header
header = bounding_box [bounds.left, bounds.top], :width => bounds.width do
font "Helvetica"
text "Here's My Fancy Header", :align => :center, :size => 25
stroke_horizontal_rule
end
end
text "the cursor is here after header: #{cursor}"
text "the height of header #{header.height}"
end
The first printed out cursor position is 720 The second one is 691.1 The height of header is printed out with 42.77200000000005
I would expect the second cursor around 678 because of this numbers.
When i explicitly set the height of the bounding box to 50 like so
header = bounding_box [bounds.left, bounds.top], :width => bounds.width, :height => 50 do
font "Helvetica"
text "Here's My Fancy Header", :align => :center, :size => 25
stroke_horizontal_rule
end
The second position is printed by 670 like i was expecting.
I am using prawn latest github version.