PDF_show

(PHP 4, PECL pdflib >= 1.0.0) Output text at current position bool PDF_show ( resource $pdfdoc, string $text ) Prints text in the current font and size at the current position. Returns TRUE on success or FALSE on failure.

PDF_show_xy

(PHP 4, PECL pdflib >= 1.0.0) Output text at given position bool PDF_show_xy ( resource $p, string $text, float $x, float $y ) Prints text in the current font. Returns TRUE on success or FALSE on failure.

PDF_show_boxed

(PHP 4, PECL pdflib >= 1.0.0) Output text in a box [deprecated] int PDF_show_boxed ( resource $p, string $text, float $left, float $top, float $width, float $height, string $mode, string $feature ) This function is deprecated since PDFlib version 6, use PDF_fit_textline() for single lines, or the PDF_*_textflow() functions for multi-line formatting instead.

PDF_shfill

(PECL pdflib >= 2.0.0) Fill area with shading bool PDF_shfill ( resource $pdfdoc, int $shading ) Fills an area with a shading, based on a shading object. This function requires PDF 1.4 or above.

PDF_shading

(PECL pdflib >= 2.0.0) Define blend int PDF_shading ( resource $pdfdoc, string $shtype, float $x0, float $y0, float $x1, float $y1, float $c1, float $c2, float $c3, float $c4, string $optlist ) Defines a blend from the current fill color to another color. This function requires PDF 1.4 or above.

PDF_shading_pattern

(PECL pdflib >= 2.0.0) Define shading pattern int PDF_shading_pattern ( resource $pdfdoc, int $shading, string $optlist ) Defines a shading pattern using a shading object. This function requires PDF 1.4 or above.

PDF_setrgbcolor

(PHP 4, PECL pdflib >= 1.0.0) Set fill and stroke rgb color values [deprecated] bool PDF_setrgbcolor ( resource $p, float $red, float $green, float $blue ) Sets the current fill and stroke color to the supplied RGB values. Returns TRUE on success or FALSE on failure. This function is deprecated since PDFlib version 4, use PDF_setcolor() instead.

PDF_setrgbcolor_stroke

(PHP 4, PECL pdflib >= 1.0.0) Set stroke rgb color values [deprecated] bool PDF_setrgbcolor_stroke ( resource $p, float $red, float $green, float $blue ) Sets the current stroke color to the supplied RGB values. Returns TRUE on success or FALSE on failure. This function is deprecated since PDFlib version 4, use PDF_setcolor() instead.

PDF_setrgbcolor_fill

(PHP 4, PECL pdflib >= 1.0.0) Set fill rgb color values [deprecated] bool PDF_setrgbcolor_fill ( resource $p, float $red, float $green, float $blue ) Sets the current fill color to the supplied RGB values. Returns TRUE on success or FALSE on failure. This function is deprecated since PDFlib version 4, use PDF_setcolor() instead.

PDF_setpolydash

(PHP 4 >= 4.0.5, PECL pdflib >= 1.0.0) Set complicated dash pattern [deprecated] This function is deprecated since PDFlib version 5, use PDF_setdashpattern() instead.