最近の更新

2012年4月30日月曜日

iText2.1.7でレイヤを使用する方法

【目的】
iText2.1.7のライブラリを使用し、PDFでレイヤ使用したPDFを作成する。



【手順】
1.「Javaプロジェクトの作成方法」の手順で、「iTextSample007-Layer」といプロジェクトを作成。
2.「itext-2.1.7.jarをライブラリに設定する方法」の手順で、プロジェクトに「itext-2.1.7.jar」のライブラリを追加。
3.「Javaクラスファイルの作成方法」の手順で、「Main」というクラスを作成。
4.「Main.java」を以下の様に入力。
import java.io.FileOutputStream;
import java.io.IOException;

import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Element;
import com.lowagie.text.PageSize;
import com.lowagie.text.Phrase;
import com.lowagie.text.pdf.ColumnText;
import com.lowagie.text.pdf.PdfContentByte;
import com.lowagie.text.pdf.PdfLayer;
import com.lowagie.text.pdf.PdfWriter;

public class Main {
    public static final String OUTPUT_FILE_NAME = "Layer.pdf";

    public static void main(String[] args) throws DocumentException,
            IOException {
        Document document = new Document(PageSize.A4);
        PdfWriter writer = PdfWriter.getInstance(document,
                new FileOutputStream(OUTPUT_FILE_NAME));
        document.open();

        PdfContentByte cb = writer.getDirectContent();
        PdfLayer layer = new PdfLayer("Layer Sample", writer);
        Phrase phrase = new Phrase("Layer 1");
        writer.setViewerPreferences(PdfWriter.PageModeUseOC);


        cb.beginLayer(layer);
        ColumnText.showTextAligned(cb, Element.ALIGN_LEFT, phrase, 100, 100, 0f);
        cb.endLayer();

        document.close();
    }
}
5.「Ctrl+Shift+O」を押し、パッケージのインポート文を補完。
6.「Ctrl+Shift+F」を押し、ソースコードをフォーマッティング。
7.「Javaプロジェクトの実行方法」の手順で、「Main.java」を実行。
8.コンソールにエラーが出力されていないか確認。
(※コンソールが表示されていない場合は、「コンソール・ビューの表示方法」を確認)
9.「リフレッシュ(ローカルファイルとの同期)の方法」の手順で、プロジェクトをリフレッシュ。
10.「iTextSample007-Layer/Layer.pdf」が作成されています。
11.「iTextSample007-Layer/Layer.pdf」をダブルクリック。
12.「Layer.pdf」が以下の様に開き、PDFが表示されれば成功です。





13.レイヤーのアイコンをクリックすればレイヤが非表示になります




以上です。


0 件のコメント:

コメントを投稿

注: コメントを投稿できるのは、このブログのメンバーだけです。

関連記事