[File_PDF] element index

Package indexes

All elements
a c f g h i l m n o p r s t w x y z _
_
top
Variable $_alias_nb_pages
Alias for total number of pages.
Variable $_auto_page_break
Automatic page breaking.
Variable $_break_margin
Break page margin size, the bottom margin which triggers a page break.
Variable $_buffer
Buffer holding in-memory PDF.
Variable $_buflen
Buffer length, including already flushed content.
Variable $_cell_margin
Cell margin size.
Variable $_color_flag
Whether text color is different from fill color.
Variable $_compress
Flag indicating if PDF file is to be compressed or not.
Variable $_core_fonts
An array of standard font names.
Variable $_current_font
An array containing current font info.
Variable $_current_orientation
The current page orientation.
Variable $_default_orientation
The default page orientation.
Variable $_diffs
An array of encoding differences.
Variable $_draw_color
Commands for drawing color.
Variable $_fill_color
Commands for filling color.
Variable $_flushed
Whether the buffer has been flushed already.
Variable $_fonts
An array of used fonts.
Variable $_font_family
Current font family.
Variable $_font_files
An array of font files.
Variable $_font_size
Current font size in user units.
Variable $_font_size_pt
Current font size in points.
Variable $_font_style
Current font style.
Variable $_images
An array of used images.
Variable $_info
File_PDF::$_info in PDF.php
An array containing the document info, consisting of:
Variable $_in_footer
Flag set when processing footer.
Variable $_last_height
The height of the last cell printed.
Variable $_layout_mode
Layout display mode.
Variable $_left_margin
Left page margin size.
Variable $_line_width
Line width in user units.
Variable $_links
An array of internal links.
Variable $_n
File_PDF::$_n in PDF.php
Current object number.
Variable $_offsets
Array of object offsets.
Variable $_orientation_changes
Array indicating orientation changes.
Variable $_page
File_PDF::$_page in PDF.php
Current page number.
Variable $_pages
Array containing the pages.
Variable $_page_break_trigger
Threshold used to trigger page breaks.
Variable $_page_links
An array of links in pages.
Variable $_right_margin
Right page margin size.
Variable $_scale
Scale factor (number of points in user units).
Variable $_state
Current document state.
Variable $_text_color
Commands for text color.
Variable $_top_margin
Top page margin size.
Variable $_underline
Underlining flag.
Variable $_word_spacing
Word spacing.
Variable $_zoom_mode
Zoom display mode.
Method _beginDoc
Method _beginPage
Method _doUnderline
Method _endDoc
Method _endPage
Method _escape
Method _freadInt
Method _getFontFile
Method _link
Method _newobj
Method _out
File_PDF::_out() in PDF.php
Method _parseJPG
Method _parsePNG
Method _putCatalog
Method _putFonts
Method _putImages
Method _putInfo
Method _putPages
Method _putResources
Method _putStream
Method _putTrailer
Method _textString
Method _toPt
a
top
Method acceptPageBreak
Whenever a page break condition is met, the method is called, and the break is issued or not depending on the returned value. The default implementation returns a value according to the mode selected by setAutoPageBreak().
Method addFont
Imports a TrueType or Type1 font and makes it available. It is necessary to generate a font definition file first with the makefont.php utility.
Method addLink
Creates a new internal link and returns its identifier.
Method addPage
Adds a new page to the document.
Method aliasNbPages
Defines an alias for the total number of pages.
c
top
Method cell
File_PDF::cell() in PDF.php
Prints a cell (rectangular area) with optional borders, background color and character string.
Method circle
Outputs a circle. It can be drawn (border only), filled (with no border) or both.
Method close
Terminates the PDF document. It is not necessary to call this method explicitly because output() does it automatically.
Page courier.php
courier.php in courier.php
f
top
Variable $fh
File_PDF::$fh in PDF.php
Current height of page format in user units.
Variable $fhPt
File_PDF::$fhPt in PDF.php
Current height of page format in points.
Variable $fw
File_PDF::$fw in PDF.php
Current width of page format in user units.
Variable $fwPt
File_PDF::$fwPt in PDF.php
Current width of page format in points.
Method factory
Attempts to return a conrete PDF instance.
Class File_PDF
File_PDF in PDF.php
Constant FILE_PDF_FLOAT
FILE_PDF_FLOAT in PDF.php
This hack works around Horde bug #4094 (http://bugs.horde.org/ticket/?id=4094)
Method flush
Returns the current buffer content and resets the buffer.
Method footer
This method is used to render the page footer.
g
top
Method getOutput
Returns the raw PDF file.
Method getPageHeight
Returns the actual page height.
Method getPageNo
Returns the current page number.
Method getPageWidth
Returns the actual page width.
Method getStringWidth
Returns the length of a text string. A font must be selected.
Method getX
File_PDF::getX() in PDF.php
Returns the abscissa of the current position in user units.
Method getY
File_PDF::getY() in PDF.php
Returns the ordinate of the current position in user units.
h
top
Variable $h
File_PDF::$h in PDF.php
Current height of page in user units
Variable $hPt
File_PDF::$hPt in PDF.php
Current height of page in points.
Page helvetica.php
helvetica.php in helvetica.php
Page helveticab.php
helveticab.php in helveticab.php
Page helveticabi.php
helveticabi.php in helveticabi.php
Page helveticai.php
helveticai.php in helveticai.php
Method header
This method is used to render the page header.
i
top
Method image
Prints an image in the page.
l
top
Method line
File_PDF::line() in PDF.php
Draws a line between two points.
Method link
File_PDF::link() in PDF.php
Puts a link on a rectangular area of the page.
m
top
Method multiCell
This method allows printing text with line breaks.
n
top
Method newLine
Performs a line break.
o
top
Method open
File_PDF::open() in PDF.php
This method begins the generation of the PDF document; it must be called before any output commands.
Method output
Sends the buffered data to the browser.
p
top
Page PDF.php
PDF.php in PDF.php
r
top
Method raiseError
Returns a PEAR_Error object.
Method rect
File_PDF::rect() in PDF.php
Outputs a rectangle.
s
top
Page symbol.php
symbol.php in symbol.php
Method save
File_PDF::save() in PDF.php
Saves the PDF file on the filesystem.
Method setAutoPageBreak
Enables or disables the automatic page breaking mode.
Method setCompression
Activates or deactivates page compression.
Method setDisplayMode
Defines the way the document is to be displayed by the viewer.
Method setDrawColor
Sets the draw color, used when drawing lines.
Method setFillColor
Sets the fill color.
Method setFont
Sets the font used to print character strings.
Method setFontSize
Defines the size of the current font.
Method setFontStyle
Defines the style of the current font.
Method setInfo
Set the info to a document.
Method setLeftMargin
Defines the left margin.
Method setLineWidth
Defines the line width.
Method setLink
Defines the page and position a link points to.
Method setMargins
Defines the left, top and right margins.
Method setRightMargin
Defines the right margin.
Method setTextColor
Sets the text color.
Method setTopMargin
Defines the top margin.
Method setX
File_PDF::setX() in PDF.php
Defines the abscissa of the current position.
Method setXY
Defines the abscissa and ordinate of the current position.
Method setY
File_PDF::setY() in PDF.php
Defines the ordinate of the current position.
t
top
Page times.php
times.php in times.php
Page timesb.php
timesb.php in timesb.php
Page timesbi.php
timesbi.php in timesbi.php
Page timesi.php
timesi.php in timesi.php
Method text
File_PDF::text() in PDF.php
Prints a character string.
w
top
Variable $w
File_PDF::$w in PDF.php
Current width of page in user units
Variable $wPt
File_PDF::$wPt in PDF.php
Current width of page in points.
Method write
This method prints text from the current position.
Method writeRotated
Writes text at an angle.
x
top
Variable $x
File_PDF::$x in PDF.php
The current horizontal position for cell positioning.
y
top
Variable $y
File_PDF::$y in PDF.php
The current vertical position for cell positioning.
z
top
Page zapfdingbats.php
zapfdingbats.php in zapfdingbats.php
a c f g h i l m n o p r s t w x y z _