Ignore:
Timestamp:
10/23/08 21:16:47 (4 years ago)
Author:
jharrop
Message:

When generating PDF output, tell the HTML step where to write the images.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/docx4j/src/main/java/org/docx4j/openpackaging/packages/WordprocessingMLPackage.java

    r558 r562  
    304304                org.w3c.dom.Document xhtmlDoc = org.docx4j.XmlUtils.neww3cDomDocument(); 
    305305                javax.xml.transform.dom.DOMResult result = new javax.xml.transform.dom.DOMResult(xhtmlDoc); 
    306                 org.docx4j.convert.out.html.HtmlExporter.html(this, result, false); // false -> don't use HTML fonts. 
     306                org.docx4j.convert.out.html.HtmlExporter.html(this, result, false, 
     307                                System.getProperty("java.io.tmpdir") ); // false -> don't use HTML fonts. 
    307308                                 
    308309                // Now render the XHTML 
Note: See TracChangeset for help on using the changeset viewer.