我在应用程序中使用JODConverter将具有基本CSS 2的HTML文件转换为PDF文件。
当我转换文件时,pdf只是一团糟,而当我尝试直接在openOffice中查看时,也很烂。
这是生成的文件:
这就是我在chrome浏览器中的功能:
如您所见,有很大的不同。
这是我的代码:
<div style="padding : 5% 25% 0% 10%; diplay : inline-block; ">
<div>
<span style="color : green; float : left; "><b>MyCompany - MyConsultant</b></span>
<hr style="width : 100%; border-top: dotted 1px; " />
</div>
<div>
<div>
<div style="float : left;">Number of days</div>
<div style="float : right ">20,5</div>
<hr style="width : 100%; border-top: dotted 1px; " />
</div>
<div>
<div style="float : left ">Your number</div>
<div style="float : right ">520,00€</div>
<hr style="width : 100%; border-top: dotted 1px; " />
</div>
<div>
<div style="float : left ">Total HT</div>
<div style="float : right ">10 660,00€</div>
<hr style="width : 100%; border-top: dotted 1px; " />
</div>
<div>
<div style="float : left ">TVA [20%]</div>
<div style="float : right ">2 132,00€</div>
</div>
<div>
<hr style="width : 100%; border-top: dotted 3px;font-weight : bold;" />
<div style="float : left;font-weight : bold;">TOTAL TTC</div>
<div style="float : right;font-weight : bold;">12 792,00€</div>
</div>
</div>
如果有人有其他解决方案,那么我想:),谢谢
最佳答案
LibreOffice / Apache OpenOffice是一个很棒的应用程序,但是在这种情况下,它不是完成这项工作的正确工具。有许多应用程序可以更有效地呈现HTML。
这对我有用,取自https://superuser.com/questions/592974/how-to-print-to-save-as-pdf-from-a-command-line-with-chrome-or-chromium。
./chrome.exe --headless --disable-gpu --print-to-pdf=file1.pdf http://www.example.com/
编辑:
要使用Java进行此调用,请参见How to execute system commands (linux/bsd) using Java。
关于java - OpenOffice HTML和CSS:JODConverter,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47717417/