0

我的text一个地块上有一个项目,放置在某个位置,具有某个方向:

th=text(x,y,'some text','HorizontalAlignment','right','rotation',rot);

根据它的位置 ( get(th, 'Position')) 或任何其他属性,有没有办法计算其边界框的下限?我想在它下面放置另一个文本。

4

1 回答 1

1

您可以使用该Extent物业。您可能需要根据您所追求的调整对齐方式,但如下所示:

th = text(x,y,'some text','HorizontalAlignment','right','rotation',rot);
ex = get(th,'Extent');
text(ex(1),ex(2),'Text Below')
于 2012-11-26T17:12:08.830 回答