Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的text一个地块上有一个项目,放置在某个位置,具有某个方向:
text
th=text(x,y,'some text','HorizontalAlignment','right','rotation',rot);
根据它的位置 ( get(th, 'Position')) 或任何其他属性,有没有办法计算其边界框的下限?我想在它下面放置另一个文本。
get(th, 'Position')
您可以使用该Extent物业。您可能需要根据您所追求的调整对齐方式,但如下所示:
Extent
th = text(x,y,'some text','HorizontalAlignment','right','rotation',rot); ex = get(th,'Extent'); text(ex(1),ex(2),'Text Below')