web-dev-qa-db-ja.com

Apache PDFBox Javaライブラリ-テーブルを作成するためのAPIはありますか?

Apache PDFBox Javaライブラリを使用してPDFを作成しています。pdfboxを使用してデータテーブルを作成する方法はありますか?そのようなAPIがない場合、手動で描画する必要がありますドローラインなどを使用したテーブル、これについてどうするかについての提案はありますか?

25
Keshav

ソースPDFBoxでテーブルを作成する

次のメソッドは、指定されたテーブルコンテンツでテーブルを描画します。これはちょっとしたハックで、小さなテキスト文字列で機能します。ワードラッピングは行いませんが、どのように行われるかを理解できます。試してごらん!

/**
 * @param page
 * @param contentStream
 * @param y the y-coordinate of the first row
 * @param margin the padding on left and right of table
 * @param content a 2d array containing the table data
 * @throws IOException
 */
public static void drawTable(PDPage page, PDPageContentStream contentStream, 
                            float y, float margin, 
                            String[][] content) throws IOException {
    final int rows = content.length;
    final int cols = content[0].length;
    final float rowHeight = 20f;
    final float tableWidth = page.findMediaBox().getWidth() - margin - margin;
    final float tableHeight = rowHeight * rows;
    final float colWidth = tableWidth/(float)cols;
    final float cellMargin=5f;

    //draw the rows
    float nexty = y ;
    for (int i = 0; i <= rows; i++) {
        contentStream.drawLine(margin, nexty, margin+tableWidth, nexty);
        nexty-= rowHeight;
    }

    //draw the columns
    float nextx = margin;
    for (int i = 0; i <= cols; i++) {
        contentStream.drawLine(nextx, y, nextx, y-tableHeight);
        nextx += colWidth;
    }

    //now add the text        
    contentStream.setFont( PDType1Font.HELVETICA_BOLD , 12 );        

    float textx = margin+cellMargin;
    float texty = y-15;        
    for(int i = 0; i < content.length; i++){
        for(int j = 0 ; j < content[i].length; j++){
            String text = content[i][j];
            contentStream.beginText();
            contentStream.moveTextPositionByAmount(textx,texty);
            contentStream.drawString(text);
            contentStream.endText();
            textx += colWidth;
        }
        texty-=rowHeight;
        textx = margin+cellMargin;
    }
}

使用法:

PDDocument doc = new PDDocument();
PDPage page = new PDPage();
doc.addPage( page );

PDPageContentStream contentStream = new PDPageContentStream(doc, page);

String[][] content = {{"a","b", "1"}, 
                      {"c","d", "2"}, 
                      {"e","f", "3"}, 
                      {"g","h", "4"}, 
                      {"i","j", "5"}} ;

drawTable(page, contentStream, 700, 100, content);
contentStream.close();
doc.save("test.pdf" );
25
dogbane

PDFBoxを使用してテーブルを作成するための小さなAPIを作成しました。 github( https://github.com/dhorions/boxable )にあります。

生成されたpdfのサンプルは、こちら http://goo.gl/a7QvRM にあります。

ヒントや提案は大歓迎です。

15
quodlibet

しばらく前に同じ問題が発生したので、そのための小さなライブラリを作成し始めました。これも最新の状態に保ちたいと思っています。

これはApache PDFBox 2.xを使用し、ここで見つけることができます: https://github.com/vandeseer/easytable

セルレベルでのフォント、背景色、パディングなどの設定、垂直方向と水平方向の配置、セルスパン、ワードラッピング、セル内の画像など、かなりのカスタマイズが可能です。

複数のページにまたがる表の描画も可能です。

たとえば、次のようなテーブルを作成できます。

enter image description here

この例のコードは here –他の例も同じフォルダにあります。

7
philonous

受け入れられた答えはニースですが、Apache PDFBox 1.xでのみ機能しますApache PDFBox 2.xの場合正しく機能させるには、コードを少し変更する必要があります。

したがって、これは同じコードですが、Apache PDFBox 2.xと互換性があります。

メソッドdrawTable

public static void drawTable(PDPage page, PDPageContentStream contentStream,
    float y, float margin, String[][] content) throws IOException {
    final int rows = content.length;
    final int cols = content[0].length;
    final float rowHeight = 20.0f;
    final float tableWidth = page.getMediaBox().getWidth() - 2.0f * margin;
    final float tableHeight = rowHeight * (float) rows;
    final float colWidth = tableWidth / (float) cols;

    //draw the rows
    float nexty = y ;
    for (int i = 0; i <= rows; i++) {
        contentStream.moveTo(margin, nexty);
        contentStream.lineTo(margin + tableWidth, nexty);
        contentStream.stroke();
        nexty-= rowHeight;
    }

    //draw the columns
    float nextx = margin;
    for (int i = 0; i <= cols; i++) {
        contentStream.moveTo(nextx, y);
        contentStream.lineTo(nextx, y - tableHeight);
        contentStream.stroke();
        nextx += colWidth;
    }

    //now add the text
    contentStream.setFont(PDType1Font.HELVETICA_BOLD, 12.0f);

    final float cellMargin = 5.0f;
    float textx = margin + cellMargin;
    float texty = y - 15.0f;
    for (final String[] aContent : content) {
        for (String text : aContent) {
            contentStream.beginText();
            contentStream.newLineAtOffset(textx, texty);
            contentStream.showText(text);
            contentStream.endText();
            textx += colWidth;
        }
        texty -= rowHeight;
        textx = margin + cellMargin;
    }
}

try-with-resources ステートメントを使用してリソースを適切に閉じるように更新された使用法:

try (PDDocument doc = new PDDocument()) {
    PDPage page = new PDPage();
    doc.addPage(page);

    try (PDPageContentStream contentStream = new PDPageContentStream(doc, page)) {
        String[][] content = {{"a", "b", "1"},
            {"c", "d", "2"},
            {"e", "f", "3"},
            {"g", "h", "4"},
            {"i", "j", "5"}};
        drawTable(page, contentStream, 700.0f, 100.0f, content);
    }
    doc.save("test.pdf");
}
7
Nicolas Filotto