Hello, world! PDF版
Posted feedbacks - Other(XML)
XSL-FO です。
Apache FOP 等で
fop -c fop.xconf hello.fo hello.pdf
Apache FOP 等で
fop -c fop.xconf hello.fo hello.pdf
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <?xml version="1.0" encoding="UTF-8" ?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master
page-height="210mm" page-width="297mm"
margin-top="20mm" margin-bottom="20mm"
margin-left="20mm" margin-right="20mm"
master-name="Pagemaster-1" >
<fo:region-body
margin-top="5mm" margin-bottom="5mm"
margin-left="5mm" margin-right="5mm" />
<fo:region-before extent="10mm" />
<fo:region-after extent="10mm" />
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="Pagemaster-1" >
<fo:flow flow-name="xsl-region-body">
<fo:block font-size="96pt" text-align="center">
Hello, world!
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
|

にしお
#3406()
Rating0/0=0.00
[ reply ]