简体   繁体   中英

converting xsl-fo to (x)html?

Is it possible to transform XSL-FO into XHTML? I have tried RenderX style sheet fo2html.xsl but the output is completely broken.

What I am trying to achieve is to let the user edit the XSL-FO content in a Flash app (AS2); so I'd like to convert it to HTML, let the user edit it, and then convert back to XSL-FO (and eventually to PDF at the end).

EDIT : actually running php 5.3.5 w/ apache 2.2

Actually that's what I do :

$in = '.\\files\\in.fo';
$out = '.\\files\\out.fo';

// transform
$xp = new XSLTProcessor();
$xml = new DOMDocument();
$xml->loadXML(file_get_contents($in));
$style = new DOMDocument();
$style->load('D:\\apache\\htdocs\\mv\\last\\myvisit\\outils\\xslt\\stylesheets\\fo2html\\fo2html.xsl');
$xp->importStylesheet($style);
// XML > HTML
$html = $xp->transformToXML($xml);
echo $html;

where $in looks like this:

<?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 margin-bottom="35.4pt" margin-left="70.85pt" margin-right="70.85pt" margin-top="35.4pt" master-name="pm0" page-height="841.9pt" page-width="595.3pt">
            <fo:region-body margin-bottom="35.45pt" margin-top="35.45pt" overflow="visible" region-name="body"/>
            <fo:region-before extent="771.1pt" overflow="visible" region-name="header"/>
            <fo:region-after display-align="after" extent="771.1pt" overflow="visible" region-name="footer"/>
        </fo:simple-page-master>
    </fo:layout-master-set>
    <fo:page-sequence master-reference="pm0" orphans="2" white-space-collapse="false" widows="2">
        <fo:flow flow-name="body">
            <fo:block end-indent="0pt" line-height="13.7pt" start-indent="0pt" text-align="start" text-indent="0pt">
                <fo:inline font-family="Times Roman, serif" font-size="12pt">%%patient.identite%%</fo:inline>
            </fo:block>
            <fo:block line-height="13.7pt">
                <fo:leader line-height="13.7pt"/>
            </fo:block>
            <fo:block end-indent="0pt" line-height="13.7pt" start-indent="0pt" text-align="start" text-indent="0pt">
                <fo:inline font-family="Times Roman, serif" font-size="12pt">%%listePrescriptions[withCompoDecomposee,withLastAdmin]%%</fo:inline>
            </fo:block>
        </fo:flow>
    </fo:page-sequence>
</fo:root>

and output HTML looks like this:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> 
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>XSL FO Document</title>
        <meta http-equiv="Content-Style-Type" content="text/css"/>
        <style type="text/css">
        <![CDATA[
            a { color: black; border: none; text-decoration: none; }
            img { border: none; } 
        ]]>
        </style>
    </head>
    <body bgcolor="white" marginwidth="6" marginheight="6" leftmargin="6" topmargin="6">
        <div>
        </div>
    </body>
</html>

XSL-FO is XML, so use the following:

  • loadVariables to call the PHP script in Flash
  • textArea to edit the XSL-FO in Flash
  • sendAndLoad to send the edited document back to the server for PDF conversion

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM