From 214a9734308375077f67db1d54bde6696719e4bd Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Fri, 24 Jul 2020 13:31:08 +0530 Subject: Update FPDF version --- pdf/fpdf/doc/output.htm | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) (limited to 'pdf/fpdf/doc/output.htm') diff --git a/pdf/fpdf/doc/output.htm b/pdf/fpdf/doc/output.htm index b62291c..9a905a8 100755 --- a/pdf/fpdf/doc/output.htm +++ b/pdf/fpdf/doc/output.htm @@ -7,35 +7,39 @@

Output

-string Output([string name, string dest]) +string Output([string dest [, string name [, boolean isUTF8]]])

Description

-Send the document to a given destination: browser, file or string. In the case of browser, the -plug-in may be used (if present) or a download ("Save as" dialog box) may be forced. +Send the document to a given destination: browser, file or string. In the case of a browser, the +PDF viewer may be used or a download may be forced.
The method first calls Close() if necessary to terminate the document.

Parameters

-
name
-
-The name of the file. If not specified, the document will be sent to the browser -(destination I) with the name doc.pdf. -
dest
-Destination where to send the document. It can take one of the following values: +Destination where to send the document. It can be one of the following: +The default value is I. +
+
name
+
+The name of the file. It is ignored in case of destination S.
+The default value is doc.pdf. +
+
isUTF8
+
+Indicates if name is encoded in ISO-8859-1 (false) or UTF-8 (true). +Only used for destinations I and D.
+The default value is false.

See also

-Close(). +Close
Index
-- cgit