<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Apr 3, 2014 at 4:22 PM, Sean McBride <span dir="ltr"><<a href="mailto:sean@rogue-research.com" target="_blank">sean@rogue-research.com</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi all,<br>
<br>
If I create a vtkTextActor then tell its vtkTextProperty to:<br>
<br>
SetVerticalJustificationToBottom()<br>
SetValue(10.0, 10.0)<br>
<br>
should I expect alignment relative to the font's baseline?  I'm finding that as the string changes to include/exclude character with descenders (like 'p') that the text bounces up and down.  Is that expected or a bug?  Either way, how can I get alignment on the baseline?<br>

</blockquote><div><br></div><div>This is the expected behavior at the moment, as it makes it easier to, say, align a text box to a bottom corner of the viewport without worrying about multiline, decenders, rotations, etc pushing text out of the rendered area.</div>

<div><br></div><div>I think your desired functionality would be quite useful for certain applications, but is currently beyond the capabilities of vtkTextActor.</div><div><br></div><div>That said, it should be possible to manually adjust the text actor to get what you want. Using vtkTextRenderer::GetBoundingBox, you can find out how many pixels lie between the edge of the texture and the baseline for a given string, as the bounding box will use the starting pen position on the baseline as (0,0). A bit messy, but that's the only way I can think of to get the current code to do what you want.</div>

<div><br></div><div>Feel free to file a feature request for this, I think it would be a nice addition to our text rendering capabilities.</div><div><br></div><div>Hope this helps,</div><div><br></div><div>Dave</div></div>

</div></div>