Forum und email

cpdf_end_text

(PHP 4, PHP 5 <= 5.0.5)

cpdf_end_text — テキストセクションを終了する

説明

bool cpdf_end_text ( int $pdf_document )

cpdf_begin_text() で開始したテキストセクションを終了します。

パラメータ

pdf_document

cpdf_open() が返す、ドキュメントのハンドル。

返り値

成功した場合に TRUE を、失敗した場合に FALSE を返します。

Example#1 テキスト出力

<?php
cpdf_begin_text
($pdf);
cpdf_set_font($pdf16"Helvetica""WinAnsiEncoding");
cpdf_text($pdf100100"Some text");
cpdf_end_text($pdf)
?>