set_option("errorpolicy=return searchpath={{" . $searchpath . "}}"); /* all strings are expected as utf8 */ $p->set_option("stringformat=utf8"); /* マスターパスワードを設定し、ユーザーが変更できないようにする */ $optlist = "linearize inmemory=true masterpassword=pdflib permissions={nomodify}"; if ($p->begin_document($outfilename, $optlist) == 0) { throw new Exception("Error: " . $p->get_errmsg()); } $p->set_info("Creator", "PDFlib starter sample"); $p->set_info("Title", "starter_formfields"); $optlist = "script[" . strlen($js) . "]={" . $js . "}"; $action = $p->create_action("JavaScript", $optlist); $optlist = "action={open=" . $action . "}"; $p->begin_page_ext(0, 0, "width=a4.width height=a4.height " . $optlist); $font = $p->load_font("NotoSerif-Regular", "winansi", "simplefont"); if ($font == 0) { throw new Exception("Error: " . $p->get_errmsg()); } $p->setfont($font, 24); $p->fit_textline("Date: ", 125, $lly+5, "position={right bottom}"); /* tooltip でフィールドに説明のテキストを追加する */ $optlist = "tooltip={Date (will be filled automatically)} " . "bordercolor={gray 0} font=" . $font; $p->create_field($llx, $lly, $urx, $ury, "date", "textfield", $optlist); $lly-=100; $ury-=100; $p->fit_textline("Name: ", 125, $lly+5, "position={right bottom}"); $optlist = "tooltip={Enter your name here} " . "bordercolor={gray 0} font=" . $font; $p->create_field($llx, $lly, $urx, $ury, "name", "textfield", $optlist); $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=starter_formfields.pdf"); print $buf; } catch (PDFlibException $e) { echo("PDFlib exception occurred in starter_formfields sample:\n" . "[" . $e->get_errnum() . "] " . $e->get_apiname() . ": " . $e->get_errmsg() . "\n"); exit(1); } catch (Exception $e) { echo($e); exit(1); } $p = 0; ?>