mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 17:08:54 +00:00
Updated the image features chapter a bit
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@30157 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
0fdbbbaacf
commit
d60e6ea286
1 changed files with 8 additions and 5 deletions
|
@ -1,11 +1,14 @@
|
|||
<chapter id="features.images">
|
||||
<title>Creating GIF images</title>
|
||||
<title>Creating and manipulating images</title>
|
||||
|
||||
<simpara>
|
||||
PHP is not limited to creating just HTML output. It can also be
|
||||
used to create GIF image files, or even more convenient GIF image
|
||||
streams. You will need to compile PHP with the GD library of
|
||||
image functions for this to work.
|
||||
used to create and manipulate image files in a variety of different
|
||||
image formats, including gif, png, jpg, wbmp, and xpm. Even more
|
||||
convenient, php can output image streams directly to a browser. You
|
||||
will need to compile PHP with the GD library of image functions for
|
||||
this to work. GD and PHP may also require other libraries, depending
|
||||
on which image formats you want to work with.
|
||||
</simpara>
|
||||
|
||||
<para>
|
||||
|
@ -26,7 +29,7 @@
|
|||
</example>
|
||||
|
||||
This example would be called from a page with a tag like: <img
|
||||
src="button.php3?text"> The above button.php3 script
|
||||
src="button.php?text"> The above button.php script
|
||||
then takes this "text" string an overlays it on top of a
|
||||
base image which in this case is "images/button1.gif"
|
||||
and outputs the resulting image. This is a very convenient way to
|
||||
|
|
Loading…
Reference in a new issue