text
stringlengths 1
254
| output
stringlengths 2
255
|
---|---|
You still have to call cpdf_close()
|
cpdf_finalize() 関数はドキュメントを終了します。 更に cpdf_close() をコールする必要があります。
|
Prev
|
cpdf_close() も参照下さい。
|
(PHP 3 = 3.0.10, PHP 4)
|
(PHP 3 = 3.0.10, PHP 4)
|
This function is only for saving memory.
|
cpdf_finalize_page() 関数は、ページ番号 page number のページを終了します。この関数 は、メモリに節約する意味しかありません。ページを終了することによ り、消費メモリは少なくなりますが、修正することはできなくなります。
|
See also cpdf_page_init().
|
cpdf_page_init() も参照下さい。
|
(PHP 4)
|
(PHP 4)
|
This function has to be called before cpdf_open() to take effect.
|
cpdf_global_set_document_limits() 関数は複数の ドキュメントの制限を設定します。この関数を使用する際には、 cpdf_open() の前にコールする必要があります。こ の関数は、この後オープンする全てのドキュメントに制限を設定します。
|
See also cpdf_open().
|
cpdf_open() も参照下さい。
|
(PHP 3 = 3.0.9, PHP 4)
|
(PHP 3 = 3.0.9, PHP 4)
|
The format of the image has to be jpeg.
|
cpdf_import_jpeg() 関数は、 file name という名前のファイルに保存された 画像をオープンします。画像のフォーマットは jpeg である必要があります。 画像は、カレントのページの位置 (x-coor, y-coor) に置かれます。 画像は、 angle 度回転されます。
|
Otherwise the coordinates are measured in postscript points disregarding the current unit.
|
オプションのパラメータ mode は、単位長さを 定義します。0 または指定しなかった場合、そのページに指定されたデ フォルトの単位が使用されます。デフォルトの単位が指定されていない 場合は、座標はポストスクリプトポイントで計られます。
|
Prev
|
cpdf_place_inline_image() も参照下さい。
|
(PHP 3 = 3.0.8, PHP 4)
|
(PHP 3 = 3.0.8, PHP 4)
|
The optional parameter mode determines the unit length.
|
cpdf_lineto() 関数はカレントのポイントから (x-coor, y-coor) に線を描きます。
|
Otherwise the coordinates are measured in postscript points disregarding the current unit.
|
最後のオプションのパラメータ mode は 単位長さを定義します。 0 または指定しなかった場合、そのページに指定されたデフォルトの単位が 使用されます。 デフォルトの単位が指定されていない場合は、座標はポストスクリプト ポイントで計られます。
|
Prev
|
cpdf_moveto(), cpdf_rmoveto(), cpdf_curveto() も参照下さい。
|
(PHP 3 = 3.0.8, PHP 4)
|
(PHP 3 = 3.0.8, PHP 4)
|
The optional parameter mode determines the unit length.
|
cpdf_moveto() 関数は、カレントのポイントを 座標 (x-coor, y-coor) に設定します。
|
Otherwise the coordinates are measured in postscript points disregarding the current unit.
|
最後のオプションのパラメータ mode は 単位長さを定義します。 0 または指定しなかった場合、そのページに指定されたデフォルトの単位が 使用されます。 デフォルトの単位が指定されていない場合は、座標はポストスクリプト ポイントで計られます。
|
Prev
|
(PHP 3 = 3.0.9, PHP 4)
|
The cpdf_newpath() starts a new path on the document given by the pdf document parameter.
|
cpdf_newpath() は、パラメータ pdf document で指定したドキュメントにおいて 新規のパスを開始します。
|
The first parameter turns document compression on if it is unequal to 0.
|
(PHP 3 = 3.0.8, PHP 4)
|
If it is omitted the document is created in memory and can either be written into a file with the cpdf_save_to_file() or written to standard output with cpdf_output_buffer().
|
cpdf_open() 関数は新規pdfドキュメントをオープ ンします。最初の引数が0 以外である場合、ドキュメントの圧縮がオン となります。オプションの2番目のパラメータには、ドキュメントを書き こむファイルを設定します。これを省略した場合、ドキュメントはメモ リー上に作成され、 cpdf_save_to_file() によりファ イルに書きこむか、 cpdf_output_buffer() により 標準出力に書き込むかのどちらかの処理を行うことができます。
|
The ClibPDF library takes the filename "-" as a synonym for stdout.
|
注意 返り値は、pdfドキュメントを書きこむ他の全ての関数の最初の引数 として将来のバージョンの ClipPDF では必要になることでしょう。
|
You can solve this problem by skipping the filename and using cpdf_output_buffer() to output the pdf document.
|
ClibPDF ライブラリは、stdout を表すファイル名として "-" をとり ます。ClipPDF の stdout への出力は apache との組み合わせでは動 作しないため、PHP が apache モジュールとしてコンパイルされてい る場合、この指定は動作しません。この問題は、ファイル名の指定を スキップし、pdfドキュメントを出力するために cpdf_output_buffer() を使用することにより解 決することができます。
|
Prev
|
cpdf_close(), cpdf_output_buffer() も参照下さい。
|
(PHP 3 = 3.0.9, PHP 4)
|
(PHP 3 = 3.0.9, PHP 4)
|
The document has to be created in memory which is the case if cpdf_open() has been called with no filename parameter.
|
cpdf_output_buffer() 関数は、pdfドキュメントを 標準出力に出力します。ドキュメントは、メモリ上に作成されている必 要があります。メモリ上に作成されるのは、 cpdf_open() を filename パラメータを指定せずに コールした場合です。
|
Prev
|
cpdf_open() も参照下さい。
|
The page has number page number and orientation orientation. orientation can be 0 for portrait and 1 for landscape.
|
(PHP 3 = 3.0.8, PHP 4)
|
The default is also 72.
|
cpdf_set_current_page() も参照下さい。
|
(PHP 3 = 3.0.9, PHP 4)
|
(PHP 3 = 3.0.9, PHP 4)
|
The image can be scaled at the same time.
|
cpdf_place_inline_image() 関数は、PHPのイメー ジ関数で作成された画像を、ページの位置 (x-coor, y-coor) に 置きます。同時に画像の縮小・拡大を行うことができます。
|
Otherwise the coordinates are measured in postscript points disregarding the current unit.
|
オプションのパラメータ mode は、単位長さを 定義します。0 または指定しなかった場合、そのページに指定されたデ フォルトの単位が使用されます。デフォルトの単位が指定されていない 場合は、座標はポストスクリプトポイントで計られます。
|
Prev
|
cpdf_import_jpeg() も参照下さい。
|
(PHP 3 = 3.0.8, PHP 4)
|
(PHP 3 = 3.0.8, PHP 4)
|
This width is set to width.
|
cpdf_rect() 関数は、左下隅を (x-coor, y-coor )と する矩形を書きます。矩形の幅を widgth に、 高さを height に設定します。
|
Otherwise the coordinates are measured in postscript points disregarding the current unit.
|
最後のオプションのパラメータ mode は単位長 さを定義します。0 または指定しなかった場合、そのページに指定され たデフォルトの単位が使用されます。 デフォルトの単位が指定されていない場合は、座標はポストスクリプト ポイントで計られます。
|
The cpdf_restore() function restores the environment saved with cpdf_save().
|
(PHP 3 = 3.0.8, PHP 4)
|
Very useful if you want to translate or rotate an object without effecting other objects.
|
cpdf_restore() 関数は、 cpdf_save() で保存した環境を回復します。この関 数は、ポストスクリプトのコマンド grestore と同様に動作します。 他のオブジェクトに影響を与えずにあるオブジェクトを変換または回転 したい場合に非常に便利です。
|
Save / Restore
|
例 1保存/回復
|
See also cpdf_save().
|
cpdf_save() も参照下さい。
|
(PHP 3 = 3.0.9, PHP 4)
|
(PHP 3 = 3.0.9, PHP 4)
|
The optional parameter mode determines the unit length.
|
cpdf_rlineto() 関数はカレントのポイントから 相対座標 (x-coor, y-coor )に線を描きます。
|
Otherwise the coordinates are measured in postscript points disregarding the current unit.
|
最後のオプションのパラメータ mode は 単位長さを定義します。 0 または指定しなかった場合、そのページに指定されたデフォルトの単位が 使用されます。 デフォルトの単位が指定されていない場合は、座標はポストスクリプト ポイントで計られます。
|
Prev
|
cpdf_moveto(), cpdf_rmoveto(), cpdf_curveto() も参照下さい。
|
(PHP 3 = 3.0.9, PHP 4)
|
(PHP 3 = 3.0.9, PHP 4)
|
The optional parameter mode determines the unit length.
|
cpdf_rmoveto() 関数は、カレントのポイントを 座標 (x-coor, y-coor) に対して相対的に設定します。
|
Otherwise the coordinates are measured in postscript points disregarding the current unit.
|
最後のオプションのパラメータ mode は 単位長さを定義します。 0 または指定しなかった場合、そのページに指定されたデフォルトの単位が 使用されます。 デフォルトの単位が指定されていない場合は、座標はポストスクリプト ポイントで計られます。
|
Prev
|
cpdf_moveto() も参照下さい。
|
(PHP 3 = 3.0.8, PHP 4)
|
(PHP 3 = 3.0.8, PHP 4)
|
Prev
|
cpdf_rotate() 関数は、回転角を angle 度に設定します。
|
Warning
|
(PHP 3 = 3.0.9, PHP 4)
|
Prev
|
この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。
|
The cpdf_save() function saves the current environment.
|
(PHP 3 = 3.0.8, PHP 4)
|
Very useful if you want to translate or rotate an object without effecting other objects.
|
cpdf_save() 関数は現在のフォントを保存します。 ポストスクリプトのコマンド gsave と同様に動作します。 他のオブジェクトに影響を与えずにあるオブジェクトを変換または回転 したい場合に非常に便利です。
|
Prev
|
cpdf_restore() も参照下さい。
|
(PHP 3 = 3.0.8, PHP 4)
|
(PHP 3 = 3.0.8, PHP 4)
|
This function is not needed if the pdf document has been open by specifying a filename as a parameter of cpdf_open().
|
cpdf_save_to_file() 関数は、メモリ上に作成され たpdfドキュメントをファイルに出力します。この関数は、 cpdf_open() のパラメータとしてfilename を指定 してオープンした場合にはコールする必要はありません。
|
Prev
|
cpdf_output_buffer(), cpdf_open() も参照下さい。
|
(PHP 3 = 3.0.8, PHP 4)
|
(PHP 3 = 3.0.8, PHP 4)
|
Prev
|
cpdf_scale() 関数は、両方向の倍率を 設定します。
|
Warning
|
(PHP 3 = 3.0.9, PHP 4)
|
Prev
|
この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。
|
Prev
|
(PHP 3 = 3.0.8, PHP 4)
|
The cpdf_set_char_spacing() function sets the spacing between characters.
|
cpdf_set_char_spacing() 関数は、文字の間隔を 設定します。
|
Prev
|
cpdf_set_word_spacing(), cpdf_set_leading() も参照下さい。
|
Prev
|
(PHP 3 = 3.0.8, PHP 4)
|
The cpdf_set_creator() function sets the creator of a pdf document.
|
cpdf_set_creator() 関数は、pdf ドキュメントの creator を設定します。
|
Prev
|
cpdf_set_subject(), cpdf_set_title(), cpdf_set_keywords() も参照下さい。
|
(PHP 3 = 3.0.9, PHP 4)
|
(PHP 3 = 3.0.9, PHP 4)
|
One can switch between pages until a page is finished with cpdf_finalize_page().
|
cpdf_set_current_page() 関数は、全ての操作を行 うページを設定します。 cpdf_finalize_page() に よりページを終了するまでページ間を移動することができます。
|
Prev
|
cpdf_finalize_page() も参照下さい。
|
(PHP 3 = 3.0.8, PHP 4)
|
(PHP 3 = 3.0.8, PHP 4)
|
If both are 0 a solid line is set.
|
cpdf_setdash() 関数は、白の長さ white および黒の長さ black により破線のパターンを設定します。両 方とも0の場合は実線が描かれます。
|
(PHP 3 = 3.0.8, PHP 4)
|
(PHP 3 = 3.0.8, PHP 4)
|
Prev
|
cpdf_setflat() 関数は、flatness を 0から100までの 値に設定します。
|
Warning
|
(PHP 4 = 4.0.6)
|
Prev
|
この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。
|
Currently only the standard postscript fonts are supported.
|
(PHP 3 = 3.0.8, PHP 4)
|
Warning
|
(PHP 4 = 4.0.6)
|
Prev
|
この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。
|
Prev
|
(PHP 3 = 3.0.8, PHP 4)
|
The cpdf_setgray_fill() function sets the current gray value to fill a path.
|
cpdf_setgray_fill() 関数は、パスを塗りつぶす色 として指定したグレー値を設定します。
|
Prev
|
cpdf_setrgbcolor_fill() も参照下さい。
|
Prev
|
(PHP 3 = 3.0.8, PHP 4)
|
The cpdf_setgray() function sets the current drawing and filling color to the given gray value.
|
cpdf_setgray() 関数は、カレントの描画お よび塗りつぶし色を指定したグレー値に設定します。
|
Prev
|
cpdf_setrgbcolor_stroke(), cpdf_setrgbcolor_fill() も参照下さい。
|
Prev
|
(PHP 3 = 3.0.8, PHP 4)
|
The cpdf_setgray_stroke() function sets the current drawing color to the given gray value.
|
cpdf_setgray_stroke() はカレントの描画色を 指定したグレー値に設定します。
|
Prev
|
cpdf_setrgbcolor_stroke() も参照下さい。
|
Prev
|
(PHP 3 = 3.0.8, PHP 4)
|
The cpdf_set_horiz_scaling() function sets the horizontal scaling to scale percent.
|
cpdf_set_horiz_scaling() 関数は、水平方向の 倍率を scale パーセントに設定します。
|
Prev
|
(PHP 3 = 3.0.8, PHP 4)
|
The cpdf_set_keywords() function sets the keywords of a pdf document.
|
cpdf_set_keywords() 関数は、pdfドキュメントの keywords を設定します。
|
Prev
|
cpdf_set_title(), cpdf_set_creator(), cpdf_set_subject() も参照下さい。
|
(PHP 3 = 3.0.8, PHP 4)
|
(PHP 3 = 3.0.8, PHP 4)
|
This will be used if text is output by cpdf_continue_text().
|
cpdf_set_leading() 関数はテキストの行間 設定します。この関数は、 cpdf_continue_text() により テキストを出力する場合に使用されます。
|
Prev
|
cpdf_continue_text() も参照下さい。
|
(PHP 3 = 3.0.8, PHP 4)
|
(PHP 3 = 3.0.8, PHP 4)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.