1

我想使用 Apache FOP 和 XSLT 从图像生成 PDF。但是,如果图像更大,然后是 PDF 文档页面,那么它只会获得页面上可用的空间(包括右边距和下边距)。因此,部分图像超出了页面边界。

这是否可以设置 fop 以便如果图像无法放入页面中,它会自动拆分为多个页面?

这是我的 xslt 模板:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.1"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format"
    xmlns:java="http://xml.apache.org/xslt/java"
    xmlns:dp="http://www.dpawson.co.uk"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:f="Functions"
    xmlns:xdt="http://www.w3.org/2005/02/xpath-datatypes"
    exclude-result-prefixes="java">

    <xsl:output method="xml" version="1.0" omit-xml-declaration="no" indent="yes" />

    <xsl:param name="image-print-path" />

    <xsl:template match="/">
        <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
            <fo:layout-master-set>
                <fo:simple-page-master master-name="simpleA4"
                    page-height="29.7cm" page-width="21cm" margin-top="2cm"
                    margin-bottom="2cm" margin-left="2cm" margin-right="2cm">
                    <fo:region-body margin-top="20pt" margin-bottom="35pt" />
                    <fo:region-before extent=".5in"/>
                    <fo:region-after extent=".5in"/>
                </fo:simple-page-master>
            </fo:layout-master-set>

            <fo:page-sequence master-reference="simpleA4">
                <fo:static-content flow-name="xsl-region-before" text-align="left">
                    <fo:block font-size="10pt">
                        Print
                    </fo:block>
                </fo:static-content>

                <fo:static-content flow-name="xsl-region-after">
                    <fo:block font-size="10pt" text-align="left">
                        something else
                    </fo:block>
                <!--    TODO: add current date, page number -->
                </fo:static-content>

                <fo:flow flow-name="xsl-region-body">
                    <fo:block font-size="10pt" page-break-after="always">
                        <fo:external-graphic src="{$image-print-path}"/>
                    </fo:block>
                </fo:flow>
            </fo:page-sequence>
        </fo:root>
    </xsl:template>

</xsl:stylesheet>
4

1 回答 1

0

看起来规范中没有任何可以按照您需要的方式格式化的内容。这给您留下了几个选择:

  1. 在将图形注入 XSL 工作流程之前检查图形并将其切割成多个图像以在多个页面中使用
  2. inspect the graphic to determine it's dimensions and create a page size big enough to contain it, and leave the slicing to printers
  3. set content-width to scale-down-to-fit to show the entire graphic on a single page
于 2013-09-17T12:30:58.720 回答