PDFlib サンプル集(クックブック)
PDFlib で、簡単な複数列のレイアウトをタブを使用して作成するサンプルプログラムです。
タブを使ってカラムを隔てたテキスト行を作成します。更に複雑なテーブルレイアウトの場合には、テーブル機能を使用します。
必要な製品 : PDFlib/PDFlib+PDI/PPS
/*
* タブ区切りテキスト :
* 簡単な複数列のレイアウトをタブを使用して作成する
*
* タブを使ってカラムを隔てたテキスト行を作成します。更に複雑なテーブルレイアウトの場合には、
* テーブル機能を使用します。
*
* 必要な製品 : PDFlib/PDFlib+PDI/PPS 9
* 必要なデータ : none
*/
package com.pdflib.cookbook.pdflib.textflow;
import com.pdflib.pdflib;
import com.pdflib.PDFlibException;
public class tabstops_in_text
{
public static void main (String argv[])
{
/* 必要に応じてデータファイルがあるフォルダのパスを指定する */
String searchpath = "../input";
String outfile = "tabstops_in_text.pdf";
String title = "Tabstops in Text";
pdflib p = null;
int tf = -1;
String result, optlist, text;
int exitcode = 0;
try {
p = new pdflib();
p.set_option("searchpath={" + searchpath + "}");
/* load_font() 等でエラーが起きた場合、-1を返す */
p.set_option("errorpolicy=return");
/* 出力文書名を指定して、出力文書を開く */
if (p.begin_document(outfile, "") == -1)
throw new Exception("Error: " + p.get_errmsg());
p.set_info("Creator", "PDFlib Cookbook");
p.set_info("Title", title);
/* A4横のページを作成する */
p.begin_page_ext(0, 0, "width=a4.height height=a4.width");
/* テキストは、マルチカラムレイアウトを作成するために、タブストップを含んでいる */
text =
"ITEM\tDESCRIPTION\tQUANTITY\tPRICE\tAMOUNT\n" +
"1\tSuper Kite\t2\t20.00\t40.00\n" +
"2\tTurbo Flyer\t5\t40.00\t200.00\n" +
"3\tGiga Trash\t1\t180.00\t180.00\n\n" +
"\t\t\tTOTAL\t420.00";
/* オプションリストを作成する。"ruler"オプションはタブの位置を定義する。
* "tabalignment"オプションは4つのタブ位置の整列(右揃え、左揃え、中央揃え)を
* 定義する。"hortabmethod=ruler"は、"ruler"オプションのタブ値に沿ってタブ位置を
* 処理する。
*/
optlist =
"ruler ={60 200 300 400} tabalignment={left center right right} " +
"hortabmethod=ruler leading=120% fontname=Helvetica fontsize=12 " +
"encoding=unicode";
/* 上記で定義したオプションリストを使用して、テキストフローを追加する */
tf = p.add_textflow(-1, text, optlist);
if (tf == -1)
throw new Exception("Error: " + p.get_errmsg());
/* 境界線色を定義する */
p.setcolor("stroke", "rgb", 0.85, 0.83, 0.85, 0);
/* はめ込み枠にテキストフローを配置する */
result = p.fit_textflow(tf, 100, 250, 500, 340, "showborder");
if (!result.equals("_stop"))
{
/* エラーチェックをする */
}
p.delete_textflow(tf);
p.end_page_ext("");
p.end_document("");
} catch (PDFlibException e){
System.err.println("PDFlib exception occurred:");
System.err.println("[" + e.get_errnum() + "] " + e.get_apiname() +
": " + e.get_errmsg());
exitcode = 1;
} catch (Exception e) {
System.err.println(e.toString());
exitcode = 1;
} finally {
if (p != null) {
p.delete();
}
System.exit(exitcode);
}
}
}
(Apr 3, 2007 - May 23, 2019)