From 1aeaaeb00a665ab45a5dc47f25e01da5bf077d7f Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 6 Jun 2000 20:04:27 +0000 Subject: [PATCH] - documented new pdf functions - fixed error in file-upload.xml (sect1 was closed to early) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@25687 c90b9560-bf6c-de11-be94-00142212c4b1 --- features/file-upload.xml | 4 +- functions/pdf.xml | 151 ++++++++++++++++++++++++++++++++++++++- 2 files changed, 152 insertions(+), 3 deletions(-) diff --git a/features/file-upload.xml b/features/file-upload.xml index 3877aac8c5..624ad92845 100644 --- a/features/file-upload.xml +++ b/features/file-upload.xml @@ -149,14 +149,14 @@ Send this file: <INPUT NAME="userfile" TYPE="file"> $userfile_name[1] would contain the value xwp.out. Similarly, $userfile_size[0] would contain - review.html's filesize, and so forth. + review.html's filesize, and so forth. $userfile['name'][0], $userfile['tmp_name'][0], $userfile['size'][0], and $userfile['type'][0] are also set. - + PUT method support diff --git a/functions/pdf.xml b/functions/pdf.xml index 5a757181dc..bc89c41c4f 100644 --- a/functions/pdf.xml +++ b/functions/pdf.xml @@ -844,8 +844,84 @@ fclose($fp); The PDF_set_parameter function sets several - parameters of pdflib. + parameters of pdflib which are of the type string. + + See also PDF_get_value, + PDF_set_value, + PDF_get_parameter. + + + + + PDF_get_parameter + Gets certain parameters + + + Description + + string pdf_get_parameter + int pdf document + string name + double modifier + + + The PDF_get_parameter function gets several + parameters of pdflib which are of the type string. The function parameter + modifier characterizes the parameter to get. + If the modifier is not needed it has to be 0. + + See also PDF_get_value, + PDF_set_value, + PDF_set_parameter. + + + + + + PDF_set_value + Sets certain numerical value + + + Description + + void pdf_set_value + int pdf document + string name + double value + + + The PDF_set_value function sets several + numerical parameters of pdflib. + + See also PDF_get_value, + PDF_get_parameter, + PDF_set_parameter. + + + + + + PDF_get_value + Gets certain numerical value + + + Description + + double pdf_get_value + int pdf document + string name + double modifier + + + The PDF_get_value function gets several + numerical parameters of pdflib. The function parameter + modifier characterizes the parameter to get. + If the modifier is not needed it has to be 0. + + See also PDF_set_value, + PDF_get_parameter, + PDF_set_parameter. @@ -2230,6 +2306,79 @@ pdf_close_image($pdf, $pim); + + + PDF_set_border_style + Sets style of border around links and annotations + + + Description + + void pdf_set_border_style + int pdf document + string style + double width + + + The PDF_set_border_style function sets the + style and width of the suroundig box of links and annotations. + The parameter style can be 'solid' or + 'dashed'. + + See also PDF_set_border_color, + PDF_set_border_dash. + + + + + + PDF_set_border_color + Sets color of border around links and annotations + + + Description + + void pdf_set_border_color + int pdf document + double red + double green + double blue + + + The PDF_set_border_color function sets the + color of the suroundig box of links and annotations. + The three color components have to have a value between 0.0 and + 1.0. + + See also PDF_set_border_style, + PDF_set_border_dash. + + + + + + PDF_set_border_dash + Sets dash style of border around links and annotations + + + Description + + void pdf_set_border_dash + int pdf document + double black + double white + + + The PDF_set_border_dash function sets the + lenght of + black and white areas of a dashed line of the suroundig box of + links and annotations. + + See also PDF_set_border_style, + PDF_set_border_color. + + +