Kogie / xdocreport

Automatically exported from code.google.com/p/xdocreport
1 stars 0 forks source link

alignement is lost after pdf generation #207

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
InputStream is = new FileInputStream(new File(
                    "docx/RE06.docx"));
XWPFDocument document = new XWPFDocument(is);

            // 2) Prepare Pdf options
PdfOptions options = PdfOptions.create();

            // 3) Convert XWPFDocument to Pdf
OutputStream out = new FileOutputStream(new File(
                    "pdf/RE06.pdf"));
PdfConverter.getInstance().convert(document, out, options);
---------------------------
What is the expected output? What do you see instead?
we would like to keep the alignement. The indented text overlays the labels 
after generation

What version of the product are you using? On what operating system?
org.apache.poi.xwpf.converter.pdf 1.0.0
windows 7 and xp
java 6
Please provide any additional information below.

Original issue reported on code.google.com by fhoudeb...@gmail.com on 12 Dec 2012 at 10:35

Attachments:

GoogleCodeExporter commented 9 years ago
Problem is again with tabs stop which is awful to manage. I will try to see if 
it's possible to fix it when I will find time.

Regards Angelo

Original comment by angelo.z...@gmail.com on 12 Dec 2012 at 10:48

GoogleCodeExporter commented 9 years ago
Problem is fixed. I had JUnit 
http://code.google.com/p/xdocreport/source/browse/thirdparties-extension/org.apa
che.poi.xwpf.converter.pdf/src/test/resources/org/apache/poi/xwpf/converter/core
/Issue207.docx

Original comment by angelo.z...@gmail.com on 12 Dec 2012 at 6:28

GoogleCodeExporter commented 9 years ago
Tested and approuved, thanks

Original comment by fhoudeb...@gmail.com on 13 Dec 2012 at 8:33