I am currently facing issues with my table width not retaining while converting docx to pdf. Could you please let me know the resolution for the same. Attached is the doc.
Am using docx4j to update properties and fields withing documents as they are being checked into a document management system called Documentum.
Have noticed that the documents are considerably smaller after being save to zip but the document appears to be visibly the same can someone please provide a possible explanation for this and what is being lost.
Below is that code that I am using to save the file to zip and convert ...
I'm trying to implement my conversion of DOCX to HTML and plain text. I use the org.docx4j.model.listnumbering.Emulator's getNumber() method to render numbered lists. When I use decimal numbering format everything is fine. But when using letters here is what I get:
I am using XHTMLImporterImpl to convert XHTML to docx. There is a baseUrl parameter in the convert() function. It does not seem to be working appropriately, however, and simply puts in the file:/// path in relative links, instead of the baseUrl I am a using.
When I looked at the underlying code, I could not find any evidence that setting the baseUrl would do anything.
i'm developing an eclipse plugin that uses docx4j to produce docx documentation. What i need is getting a string rapresentation of the output docx file, and not saving it do disk. I need something like
I have a template docx file. In the template, there is a 10x1 table with placeholders (D1,D2,D3.....D10). I have a replaceTable method to replace the placeholders in this table with records returned by a SQL query. For the placeholder D3 alone, it needs to be replaced with values from 2 String variables (say str1 and str2). The requirement I have is to be able to replace D3 with str1 + newlinecharacter + str2.