我正在通过 wkhtmltopdf gem 使用 wicked_pdf (11.0_rc1)。我注意到多列布局不能很好地与分页符配合使用。

我还注意到 CentOS(在 Heroku 上)和 Windows 之间的行为有所不同。在 Windows 上,在某些情况下会使用分页符。

你以前遇到过这样的问题吗?任何帮助都受到高度赞赏。

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <style type='text/css'>
      .page {
        page-break-after:always !important;
        clear:both;
        display:block;
      }

      #content {
        width: 800px;
      }
    </style>
  </head>

  <body>
    <div id="content">
      <div class="page">
        <div style="float:left;width:200px;">
          DESCRIPTION 1
        </div>

        <div style="float:left;">
          PIE CHART IMAGE 1
        </div>
      </div>

      <div class="page">
        <div style="float:left;width:200px;">
          DESCRIPTION 2
        </div>

        <div style="float:left;">
          PIE CHART IMAGE 2
        </div>
      </div>

      <div class="page">
        <div style="float:left;width:200px;">
          DESCRIPTION 3
        </div>

        <div style="float:left;">
          PIE CHART IMAGE 3
        </div>
      </div>

    </div>
  </body>
</html>

最佳答案

查看此处详细的答案和文章:

https://github.com/mileszs/wicked_pdf/issues/96

您安装的 wkhtmltopdf 版本可能没有用 QT 打补丁。

关于ruby-on-rails - wkhtmltopdf:分页符和多列布局不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8907761/

10-13 07:38