Text 如何求旋转文本框的坐标

Text 如何求旋转文本框的坐标,text,coordinates,rotation,frame,adobe-indesign,Text,Coordinates,Rotation,Frame,Adobe Indesign,借助(idml)itemtransform水平/垂直距离和路径点数组,我可以找到文本框(x1,y1)、(x2,y2)、(x3,y3)、(x4,y4)的坐标。如果旋转textframe,则项目变换值将发生更改,但路径点数组值相同。我可以通过矩阵[cos(θ)sin(θ)-sin(θ)cos(θ)0]找到旋转角度,但我无法得到旋转文本帧的精确坐标。文本框如下所示 普通文本框 <TextFrame Self="u136" ParentStory="u124" ItemTransform="1

借助(idml)itemtransform水平/垂直距离和路径点数组,我可以找到文本框(x1,y1)、(x2,y2)、(x3,y3)、(x4,y4)的坐标。如果旋转textframe,则项目变换值将发生更改,但路径点数组值相同。我可以通过矩阵[cos(θ)sin(θ)-sin(θ)cos(θ)0]找到旋转角度,但我无法得到旋转文本帧的精确坐标。文本框如下所示

普通文本框

  <TextFrame Self="u136" ParentStory="u124" ItemTransform="1 0 0 1 101.72727272727272 -349.41818181818184">
        <Properties>
            <PathGeometry>
                <GeometryPathType PathOpen="false">
                    <PathPointArray>
                        <PathPointType Anchor="-101.72727272727272 -46.581818181818164" LeftDirection="-101.72727272727272 -46.581818181818164" RightDirection="-101.72727272727272 -46.581818181818164"/>
                        <PathPointType Anchor="-101.72727272727272 -0.3272727272727103" LeftDirection="-101.72727272727272 -0.3272727272727103" RightDirection="-101.72727272727272 -0.3272727272727103"/>
                        <PathPointType Anchor="115.9090909090909 -0.3272727272727103" LeftDirection="115.9090909090909 -0.3272727272727103" RightDirection="115.9090909090909 -0.3272727272727103"/>
                        <PathPointType Anchor="115.9090909090909 -46.581818181818164" LeftDirection="115.9090909090909 -46.581818181818164" RightDirection="115.9090909090909 -46.581818181818164"/>
                    </PathPointArray>
                </GeometryPathType>
            </PathGeometry>
        </Properties>         

旋转文本框

 <TextFrame Self="u136" ParentStory="u124" ItemTransform="0 1 -1 0 320.3805483338268 -125.07900895050204">
        <Properties>
            <PathGeometry>
                <GeometryPathType PathOpen="false">
                    <PathPointArray>
                        <PathPointType Anchor="-101.72727272727272 -46.581818181818164" LeftDirection="-101.72727272727272 -46.581818181818164" RightDirection="-101.72727272727272 -46.581818181818164"/>
                        <PathPointType Anchor="-101.72727272727272 -0.3272727272727103" LeftDirection="-101.72727272727272 -0.3272727272727103" RightDirection="-101.72727272727272 -0.3272727272727103"/>
                        <PathPointType Anchor="115.9090909090909 -0.3272727272727103" LeftDirection="115.9090909090909 -0.3272727272727103" RightDirection="115.9090909090909 -0.3272727272727103"/>
                        <PathPointType Anchor="115.9090909090909 -46.581818181818164" LeftDirection="115.9090909090909 -46.581818181818164" RightDirection="115.9090909090909 -46.581818181818164"/>
                    </PathPointArray>
                </GeometryPathType>
            </PathGeometry>
        </Properties>        

当我将旋转的textframe的值转换为坐标并在屏幕上绘制时,我没有得到它在原始中绘制的确切位置

有人能帮我找出旋转文本框的坐标吗


提前感谢。

TextFrame的ItemTransform属性(a b c d e f)中的值表示二维空间变换矩阵,用于根据以下矩阵乘法公式从TextFrame的内部坐标系转换回父坐标系:

| Xparent |   | a  c  e |   | X |
| Yparent | = | b  d  f | * | Y |
| 1       |   | 0  0  1 |   | 1 |
其中X,Y是TextFrame内部坐标系中的坐标,Xparent和Yparent是父坐标系(排列等)中的对应坐标


有关更多信息,请参见

Hi如何获取文本框的高度、宽度和x、y位置?