You can obtain the width of a string in the current font with stringwidth and although this actually pushes offset coordinates on the stack, the y-value always seems to be useless. Is there a way to determine the exact height of a string, that may or may not include descenders?
| |||
|
feedback
|
|
The PLRM has this to say about
So what would work to take into account the string's height? The magic words to read up about in PRLM are
It calculates the string's height and uses that info to try and center a small filled circle into the center of its bounding box. | |||
|
feedback
|
|
This seems to work most of the time:
It won't work for all | |||
feedback
|
|
I have already answered this in How to determine string height in PostScript?, but it is useful here also. Just adding to pipitas answer:
The method expects that some font is already set. It works over the selected font ( I use (HÍpg) to get the biggest bounding box possible, using accentuated uppercase characters and "below line" characters. The result is good enough. The alternative approach steals from dreamlax's answer -- some fonts do not support Saving and restoring the graphic context keeps the current point in place, so it has no impact over the "flow" of your document. Hope I've helped. | ||||
feedback
|