5

导出表格时,我想将 PDF 页面大小更改为 A4横向。但是我做什么都做不到。。

这是我的代码:

 <h:commandLink title="Export">
     <p:graphicImage value="/resources/theme-main/images/export/pdf.png" 
        style="border:0"/>
     <p:dataExporter target="myTable" type="pdf" fileName="name" 
        encoding="windows-1250" preProcessor="#{fileExportProcessor.preProcessPDF}"/>
 </h:commandLink>

托管bean的方法非常简单:

   public void preProcessPDF(Object document) {
      Document pdf = (Document) document;
      pdf.open();
      pdf.setPageSize(PageSize.A4.rotate());
    }

我还尝试将大小设置为 A0 或一些我的自定义大小,只是为了看到它工作,但没有任何改变...... PDF 导出仅在 A4 纵向模式下导出。

你能帮我吗,如何使这项工作(A4横向模式)?

4

1 回答 1

10

试试这种方式:

public void preProcessPDF(Object document) {
      Document pdf = (Document) document;
      pdf.setPageSize(PageSize.A4.rotate());
      pdf.open();
    }

为我工作!

于 2013-10-15T14:33:33.580 回答