Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #27199

    Hello,
    I’m evaluating the trial version of pd4ml but I’m having some troubles trying to convert a simple HTML with internal links.

    If I convert HTML to PDF the result has working internal links.

    If I convert HTML to RTF the result is a file with clickable links but they seem to be not working. I’ve tried to convert the RTF file to a new PDF file (using OpenOffice, LibreOffice) and the links are still not working.

    In the zip attached there are the html source file and the rtf output, obtained running the following Java code:

    <br /> private void generateRTF() throws Exception {<br /> FileOutputStream fos = new FileOutputStream(new File("data/output.rtf"));<br /> PD4ML pd4ml = new PD4ML();<br /> pd4ml.outputFormat(PD4Constants.RTF);<br /> pd4ml.setPageSize(pd4ml.changePageOrientation(PD4Constants.A4));<br /> pd4ml.enableDebugInfo();<br /> pd4ml.render("file:data/test.html", fos);<br /> fos.flush();<br /> fos.close();<br /> }<br />

    Thanks,
    M.

    #30167

    The issue has been fixed in forthcoming v3.10.8. The feature always works correctly in PD4ML v4 snapshots

Viewing 2 posts - 1 through 2 (of 2 total)

The forum ‘Troubleshooting’ is closed to new topics and replies.