Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17182 программиста и 1834 робота. Сейчас ищут 1680 программистов ...
Image_Text::display
Вернуться к: Image_Text
Image_Text::display
Image_Text::display() – Display the image (send it to the browser).
Synopsis
require_once 'ImageText.php';
bool Image_Text::display ( bool $save = false , bool $free = false )
This will output the image to the users browser. You can use the standard IMAGETYPE_* constants to determine which image type will be generated. Optionally you can save your image to a destination you set in the options.
Parameter
- boolean $save
-
Save or not the image on printout.
- boolean $free
-
Free the image on exit.
Return value
returns True on success, otherwise PEAR::Error.
Throws
throws no exceptions thrown
See
Note
This function can not be called statically.
Вернуться к: Image_Text