cpdf_begin_text
cpdf_begin_text — テキストセクションを開始する
説明
bool cpdf_begin_text ( int pdf_document )テキストセクションを開始します。
テキストセクションは、cpdf_end_text() で終了する必要があります。
パラメータ
- pdf_document
-
cpdf_open() が返す、ドキュメントのハンドル。
返り値
成功した場合に TRUE を、失敗した場合に FALSE を返します。例
例 372. テキスト出力
<?php
cpdf_begin_text($pdf);
cpdf_set_font($pdf, 16, "Helvetica", "WinAnsiEncoding");
cpdf_text($pdf, 100, 100, "Some text");
cpdf_end_text($pdf)
?>
参考
cpdf_end_text() |
Weblioに収録されているすべての辞書からcpdf_begin_textを検索する場合は、下記のリンクをクリックしてください。

- cpdf_begin_textのページへのリンク