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 ); /* 出力文書を開く */ $p->begin_page_ext(0, 0, "width=a4.width height=a4.height"); /* フォントをロードする */ $font = $p->load_font("Helvetica", "unicode", ""); if ($font == 0) throw new Exception("Error: " . $p->get_errmsg()); /* --------- テキストラインを使用した出力方法 I -------- */ /* * info_textline()よりテキストのデフォルトの幅と高さを取得し、背景色の上に * テキストを配置する。 * フォントのデフォルトの高さは、キャップハイトを用いる。 * 他のフォントプロパティを使用する場合は、 "matchbox"オプションを使用する。 */ $optlist = "font=" . $font . " fontsize=40 " . "fillcolor={gray 1}"; $width = $p->info_textline($textline, "width", $optlist); $height = $p->info_textline($textline, "height", $optlist); /* 取得した幅と高さで、矩形を描き、塗りつぶす */ $p->setcolor("fill", "rgb", 0.0, 0.8, 0.8, 0); $p->rect($x, 700, $width, $height); $p->fill(); /* 矩形の上にテキストを配置する */ $p->fit_textline($textline, $x, 700, $optlist); /* --------- テキストラインを使用した出力方法 II -------- */ /* fit_textline で塗りつぶした矩形の背景にテキストを配置する。 * "matchbox" オプションは、背景の矩形を作成するために使用する。 * マッチボックスの高さは"boxheight"で指定する。 * また、"offsetbottom" "offsettop"は上部と下部からの余白を追加し、 * "offsetleft"と"offsetright"では、テキストの右端、左端からの余白を * 定義する。 */ $optlist = "font=" . $font . " fontsize=40 " . "fillcolor={gray 1} " . "matchbox={fillcolor={rgb 0 0.8 0.8} " . "boxheight={ascender descender}}"; /* テキストを配置する */ $p->fit_textline($textline, $x, 600, $optlist); /* マッチボックスの上部と下部に余白を追加するには "offsetbottom" * "offsettop"を指定する。 * 左右に余白を追加するには "offsetleft" と "offsetright" をそれぞれ * 指定する */ $optlist = "font=" . $font . " fontsize=40 " . "fillcolor={gray 1} " . "matchbox={fillcolor={rgb 0 0.8 0.8} " . "boxheight={ascender descender} " . "offsetleft=-8 offsetright=8 offsettop=8 offsetbottom=-8}"; /* テキストラインを配置する */ $p->fit_textline($textline, $x, 500, $optlist); /* --------- テキストフローで、塗りつぶした背景色の上にテキストを出力 -------- */ /* テキストフローで緑の矩形の背景を作成する。 * 背景はマッチボックスで作成する。 */ $optlist = "font=" . $font . " fontsize=20 fillcolor={gray 1}"; $tf = $p->add_textflow($tf, $textflow, $optlist); if ($tf == 0) throw new Exception("Error: " . $p->get_errmsg()); /* 矩形の高さ */ $y = 430; /* 矩形の幅 */ $width = 500; /* * テキストフローを使用し、マッチボックスの背景を塗りつぶす。 */ $result = $p->fit_textflow($tf, $x, 0, $x + $width, $y, "matchbox={fillcolor={rgb 0.0 0.8 0.8}}"); if ($result != "_stop") { /* Check for errors or more text to be placed */ } /* テキスト全体の外接枠の高さ */ $height = $p->info_textflow($tf, "textheight"); /* * 次に表示する矩形は、テキストの高さも含めて、垂直に下方向に移動 * するため、y座標を以下の通り設定する */ $y -= $height + 50; /* * 再度、fit_textflowを呼び出し、margin を指定し、マッチボックスの * 上下左右の余白を追加する。"rewind=1" で、fit_textflow( ) を最初 * に呼び出した時の前の状態へ戻す。 */ $result = $p->fit_textflow($tf, $x, 0, $x + $width, $y, "rewind=1 matchbox={margin=-10 fillcolor={rgb 0.0 0.8 0.8}}"); if ($result != "_stop") { /* エラーかどうか、または、まだ配置すべきテキストが残っているか * をチェック */ } $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=text_on_color.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; ?>