How can I get bounds of a text, provided string with attributes say, font size, font style, and font family in GTK+?

link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

For GTK+, you should probably look at Pango. I believe the required call is pango_layout_line_get_pixel_extents(), although this will of course require you to parse whatever string it is you have with the specs, and set up the corresponding Pango object before getting the extents.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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