6

我必须使用 FOP 渲染 pfd,并且一些图像必须旋转。然而,结果看起来并不像我期望的那样。所以,这是我的问题(我不知何故无法找到一个好的文档来为我澄清这个问题):

如果我定义

fo:block-container reference-orientation="90" width="100" height="200"

这会旋转整个容器(有效地导致尺寸为 200x100 的渲染框),还是只会旋转容器的内容(让容器本身以 100x200 的尺寸呈现)?

4

1 回答 1

5

它将旋转整个容器。

这是宽度小于高度然后旋转 90 度的示例...

XSL-FO

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <fo:layout-master-set>
        <fo:simple-page-master master-name="my-page" page-width="8.5in" page-height="11in">
            <fo:region-body margin="1in" margin-top="1.5in" margin-bottom="1.5in"/>
        </fo:simple-page-master>
    </fo:layout-master-set>
    <fo:page-sequence master-reference="my-page">
        <fo:flow flow-name="xsl-region-body">
            <fo:block-container reference-orientation="90" width="3in" height="7in" background-color="black" padding="4pt">
                <fo:block color="white">Ten years ago a crack commando unit was sent to prison by a military court for a crime they didn't commit. These men promptly escaped
                    from a maximum security stockade to the Los Angeles underground. Today, still wanted by the government, they survive as soldiers of fortune.
                    If you have a problem and no one else can help, and if you can find them, maybe you can hire the A-team.</fo:block>
            </fo:block-container>
        </fo:flow>
    </fo:page-sequence>
</fo:root>

PDF 输出(使用 FOP 1.0)

在此处输入图像描述

于 2013-03-22T04:23:25.873 回答