From 35f3d83d5cf3f349da50d2eec33d4397277e6a61 Mon Sep 17 00:00:00 2001 From: James Gingerich Date: Mon, 28 Jun 1999 01:26:21 +0000 Subject: [PATCH] Update link to FDF information. Various text cleanups. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@10097 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/fdf.sgml | 138 ++++++++++++++++++++++----------------------- 1 file changed, 69 insertions(+), 69 deletions(-) diff --git a/functions/fdf.sgml b/functions/fdf.sgml index 7e69f7e4b8..8b6ccd3aa5 100644 --- a/functions/fdf.sgml +++ b/functions/fdf.sgml @@ -5,27 +5,27 @@ - This is a first attempt to implement Forms Data Format - (FDF) support in PHP. You can read the documentation at http://beta1.adobe.com/ada/acrosdk/forms.html + Forms Data Format (FDF) is a format for handling + forms within PDF documents. You can read the documentation at http://partners.adobe.com/asn/developer/acrosdk/main.html for more information on what FDF is and how it is used in general. - FDF_open - Opens a new fdf document + fdf_open + Open a new FDF document Description - int pdf_open + int fdf_open string filename - The FDF_open function opens - a new fdf document. If the parameter filename + The fdf_open function opens + a new FDF document. If the parameter filename is '.' the file is read from stdin. @@ -36,28 +36,28 @@ - FDF_close - Closes the fdf document + fdf_close + Close an FDF document Description - void pdf_close - int fdf document + void fdf_close + int fdf_document - The FDF_close function closes the fdf document. + The fdf_close function closes the FDF document. - See also FDF_open. + See also fdf_open. - FDF_create - + fdf_create + Create a new FDF document Description @@ -66,30 +66,30 @@ void - The FDF_create creates a new - fdf document. + The fdf_create creates a new + FDF document. - See also FDF_close, - FDF_save, - FDF_open. + See also fdf_close, + fdf_save, + fdf_open. - FDF_save - Saves a fdf document + fdf_save + Save a FDF document Description - int pdf_save + int fdf_save string filename - The FDF_save function saves - a fdf document. If the parameter filename + The fdf_save function saves + a FDF document. If the parameter filename is '.' the file is written to stdout. @@ -100,96 +100,96 @@ - FDF_get_value - Gets the value of a field + fdf_get_value + Get the value of a field Description string fdf_get_value - int fdf document + int fdf_document string fieldname - The FDF_get_value function returns the + The fdf_get_value function returns the value of a field. - See also FDF_set_value. + See also fdf_set_value. - FDF_get_value - Sets the value of a field + fdf_get_value + Set the value of a field Description void fdf_get_value - int fdf document + int fdf_document string fieldname string value int isName - The FDF_set_value function sets the + The fdf_set_value function sets the value of a field. The last parameter determines if the field value is to be converted to a PDF Name (isName = 1) or set to a PDF String (isName = 0). - See also FDF_get_value. + See also fdf_get_value. - FDF_next_field_name - Next field name + fdf_next_field_name + Get the next field name Description string fdf_next_field_name - int fdf document + int fdf_document string fieldname - The FDF_next_field_name function returns the + The fdf_next_field_name function returns the name of the field string after the field in parameter fieldname or the field name of the first field if the second paramter is NULL. - See also FDF_set_field, - FDF_get_field. + See also fdf_set_field, + fdf_get_field. - FDF_set_ap - Sets the appearence of a field + fdf_set_ap + Set the appearance of a field Description void fdf_set_ap - int fdf document - string fieldname + int fdf_document + string field_name int face string filename - int pagenr + int page_number - The FDF_set_ap function sets the + The fdf_set_ap function sets the appearance of a field (i.e. the value of the /AP key). - The possible values of the parameter face + The possible values of face are 1=FDFNormalAP, 2=FDFRolloverAP, 3=FDFDownAP. @@ -197,86 +197,86 @@ - FDF_set_status - Sets the value of the /STATUS key + fdf_set_status + Set the value of the /STATUS key Description void fdf_set_status - int fdf document + int fdf_document string status - The FDF_set_status sets the value + The fdf_set_status sets the value of the /STATUS key. - See also FDF_get_status. + See also fdf_get_status. - FDF_get_status - Gets the value of the /STATUS key + fdf_get_status + Get the value of the /STATUS key Description string fdf_get_status - int fdf document + int fdf_document - The FDF_get_status returns the value + The fdf_get_status returns the value of the /STATUS key. - See also FDF_set_status. + See also fdf_set_status. - FDF_set_file - Sets the value of the /F key + fdf_set_file + Set the value of the /F key Description void fdf_set_file - int fdf document + int fdf_document string filename - The FDF_set_file sets the value + The fdf_set_file sets the value of the /F key. - See also FDF_get_file. + See also fdf_get_file. - FDF_get_file - Gets the value of the /F key + fdf_get_file + Get the value of the /F key Description string fdf_get_file - int fdf document + int fdf_document - The FDF_set_file returns the value + The fdf_set_file returns the value of the /F key. - See also FDF_set_file. + See also fdf_set_file.