FOP-- 防止方块倒塌

发布于 2024-10-26 00:53:15 字数 1567 浏览 2 评论 0原文

我想在pdf上显示一个复选框并尝试这样做:

  <fo:table-row height="10pt">
      <fo:table-cell>
       <fo:block line-height="10pt" text-align="center" border-style="solid" border="1pt" white-space-collapse="false">
      </fo:block>
    </fo:table-cell>
     <fo:table-cell>
      <fo:block/>
   </fo:table-cell>  
</fo:table-row>

但我没有得到一个框,而是得到了一条线,即框宽1pt高。 我怎样才能强制FOP,不让区块崩溃?我正在使用 Apache-Fop 1.0

Update1:

​​ 这有效:

 <fo:block text-align="left">
     <fo:table text-align="left" table-layout="fixed">                                            
         <fo:table-column column-width="10pt"/>
         <fo:table-column column-width="10pt"/>                                            
         <fo:table-body>
             <fo:table-row height="10pt">
                 <fo:table-cell height="10pt">
                     <fo:block line-height="10pt" font-family="$_Fontfamily"
                               font-size="8pt">$row.getValue().get(0)
                     </fo:block>
                 </fo:table-cell>
        <fo:table-cell height="10pt" width="10pt">
            <fo:block text-align="center" border-style="solid" border="1pt"/>
          </fo:table-cell>                                             
             </fo:table-row>
         </fo:table-body>
     </fo:table>
 </fo:block>

我想要第二个单元格上的边框。 如果我将一个表放入第二个块中,那么它就可以正常工作。

I would like to show a tickbox on the pdf and tried to do it as:

  <fo:table-row height="10pt">
      <fo:table-cell>
       <fo:block line-height="10pt" text-align="center" border-style="solid" border="1pt" white-space-collapse="false">
      </fo:block>
    </fo:table-cell>
     <fo:table-cell>
      <fo:block/>
   </fo:table-cell>  
</fo:table-row>

but instead of getting a box, I get a line ie a box width 1pt height.
How can I force FOP, not to collapse the block? I'm using Apache-Fop 1.0

Update1:

This works:

 <fo:block text-align="left">
     <fo:table text-align="left" table-layout="fixed">                                            
         <fo:table-column column-width="10pt"/>
         <fo:table-column column-width="10pt"/>                                            
         <fo:table-body>
             <fo:table-row height="10pt">
                 <fo:table-cell height="10pt">
                     <fo:block line-height="10pt" font-family="$_Fontfamily"
                               font-size="8pt">$row.getValue().get(0)
                     </fo:block>
                 </fo:table-cell>
        <fo:table-cell height="10pt" width="10pt">
            <fo:block text-align="center" border-style="solid" border="1pt"/>
          </fo:table-cell>                                             
             </fo:table-row>
         </fo:table-body>
     </fo:table>
 </fo:block>

I want border on the second cell.
If I put a table into the second block, then it works ok.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怂人 2024-11-02 00:53:15

尝试:

<fo:table-row>
  <fo:table-cell height="10pt" width="10pt">
    <fo:block text-align="center" border-style="solid" border="1pt"/>
  </fo:table-cell>
  <fo:table-cell height="10pt">
    <fo:block/>
  </fo:table-cell>  
</fo:table-row>

这是一个现实世界的例子,它产生两个具有给定测量值的单元格

<fo:table border="1pt solid black" width="18.5cm" table-layout="fixed">
  <fo:table-body>
    <fo:table-row>
      <fo:table-cell height="20.0cm" width="16.3cm" border-right="1pt solid black">
        <fo:block/>
      </fo:table-cell>
      <fo:table-cell height="20.0cm">
        <fo:block/>
      </fo:table-cell>
    </fo:table-row>
  </fo:table-body>
</fo:table>

Try:

<fo:table-row>
  <fo:table-cell height="10pt" width="10pt">
    <fo:block text-align="center" border-style="solid" border="1pt"/>
  </fo:table-cell>
  <fo:table-cell height="10pt">
    <fo:block/>
  </fo:table-cell>  
</fo:table-row>

This is a real world example it produces two cells with the given measurements

<fo:table border="1pt solid black" width="18.5cm" table-layout="fixed">
  <fo:table-body>
    <fo:table-row>
      <fo:table-cell height="20.0cm" width="16.3cm" border-right="1pt solid black">
        <fo:block/>
      </fo:table-cell>
      <fo:table-cell height="20.0cm">
        <fo:block/>
      </fo:table-cell>
    </fo:table-row>
  </fo:table-body>
</fo:table>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文