0

我在我的应用程序中使用 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€&lt;/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€&lt;/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€&lt;/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€&lt;/div>
    </div>
  </div>

如果有人有其他解决方案,那么我想要:),谢谢

4

1 回答 1

0

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 中进行此调用,请参阅如何使用 Java 执行系统命令 (linux/bsd)

于 2017-12-08T20:39:56.033 回答