s it posible to align an image to the right and wrap text around the image like it is in html and css using the float:right property ?

If so how do you do this ?

I can align an image but dont't know how to wrap the text around it. The text is dynamic text therefore varies alot in length.

Thanks alot Rick

link|improve this question

50% accept rate
Richard, you've asked eight questions and haven't accepted any answers yet. If an answer has helped you then please click on the tick on the left underneath the number of votes the answer has received. Thanks! – John Topley Jan 18 '10 at 10:34
John i have accepted some answers that helped me, didnt know i had to do that cheers rick – richard moss Jan 18 '10 at 11:50
Thanks Rick. Accepting an answer gives +15 reputation to the person who provided the answer and +2 reputation to you. – John Topley Jan 18 '10 at 12:12
feedback

1 Answer

up vote 0 down vote accepted

One suggestion is to try nested bounding boxes. The main bounding box would have the text inside it. with at some point another bounding box for the image. Something along the lines of

bounding_box([x,y], :width => bounds.width, :height => 400) do
    text "blah"
    text "blah"
    # image
    bounding_box([bounds.right - image_width, 0], :width => image_width) do
          image("path_to_file", :at => [0,0], :width =>  bounds)
    text "more blah"


end

You may be able to simply use the image without the bounding box, but the bounding box would ensure that the text flows around it.

link|improve this answer
thanks alot Grant i will try this out and let you know – richard moss Jan 19 '10 at 8:55
feedback

Your Answer

 
or
required, but never shown

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