Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.