cpdf_end_text
(PHP 3 >= 3.0.8, PHP 4, PHP 5 <= 5.0.4)
cpdf_end_text -- テキストセクションを終了する
返り値
成功した場合に TRUE を、失敗した場合に FALSE を返します。
例
例 1. テキスト出力
<?php cpdf_begin_text($pdf); cpdf_set_font($pdf, 16, "Helvetica", "WinAnsiEncoding"); cpdf_text($pdf, 100, 100, "Some text"); cpdf_end_text($pdf) ?>
|
|