I have the following code:


    pdf = Prawn::Document.new
    pdf.text "Hello", :size => 22
    pdf.text "wold", :size => 12

But this code displays two lines. I want to have the two text elements in one single line with the different font sizes as corresponding.

Any help on this?

link|improve this question

56% accept rate
Off the top of my head I'm not sure, but this should help. cloud.github.com/downloads/sandal/prawn/manual.pdf – Tass May 27 '11 at 17:14
feedback

1 Answer

I'm not sure which tags are supported, but this might do the trick.

require 'prawn/format'
text "<font size=\"22\">Hello</font> <font size=\"12\">world</font>", inline_format => true

I found this answer here.

link|improve this answer
I'll give this a try, seems perfect ! – Mr_Nizzle Dec 9 '10 at 16:42
when I type require 'prawn/format' it says file not found...! – Angela Feb 9 '11 at 19:19
@Angela - I don't know a thing about Prawn other than a little skimming to help people with their PDF problems. Ask a question. – Mark Storer Feb 9 '11 at 20:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.