set_option("searchpath={" . $searchpath . "}"); /* load_font() 等でエラーが起きた場合、0を返す */ $p->set_option("errorpolicy=return"); $p->set_option("stringformat=utf8"); /* 出力文書名を指定して、出力文書を開く */ if ($p->begin_document($outfile, "") == 0) 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($tf, $text, $optlist); if ($tf == 0) 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 != ("_stop")) { /* エラーチェックをする */ } $p->delete_textflow($tf); $p->end_page_ext(""); $p->end_document(""); $buf = $p->get_buffer(); $len = strlen($buf); header("Content-type: application/pdf"); header("Content-Length: $len"); header("Content-Disposition: inline; filename=tabstops_in_text.pdf"); print $buf; } catch (PDFlibException $e) { echo("PDFlib exception occurred:\n". "[" . $e->get_errnum() . "] " . $e->get_apiname() . ": " . $e->get_errmsg() . "\n"); exit(1); } catch (Exception $e) { echo($e->getMessage()); exit(1); } $p = 0; ?>