Hello, I found case when the same document saved to PDF and Word give different results. It looks like main cause of problem is that Word renders some characters in different height then it should be. To reproduce my case it is enough to use below snippet:
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
for (int i = 0; i < 45; i++) {
builder.writeln("\u2610");
}
doc.save("a.docx");
doc.save("a.pdf");
As result we receive one page in pdf and 2 pages in word.
Is this something which could be fixed or maybe configured?