reference/image/book.xml
213fbd9440a224f9c1da4942c85124ce0c120c52
...
...
@@ -14,7 +14,7 @@
14
14
used to create and manipulate image files in a variety of different
15
15
image formats, including <acronym>GIF</acronym>, <acronym>PNG</acronym>,
16
16
<acronym>JPEG</acronym>, <acronym>WBMP</acronym>, and <acronym>XPM</acronym>.
17
-
Even more convenient, PHP can output image streams directly to a browser. You
17
+
Even more conveniently, PHP can output image streams directly to a browser. You
18
18
will need to compile PHP with the <acronym>GD</acronym> library of image
19
19
functions for this to work. <acronym>GD</acronym> and PHP may also require
20
20
other libraries, depending on which image formats you want to work with.
...
...
@@ -47,6 +47,13 @@
47
47
The <function>getimagesize</function> function does not require the GD extension.
48
48
</simpara>
49
49
</note>
50
+
<caution>
51
+
<simpara>
52
+
While the bundled version of the GD library uses the Zend memory manager to
53
+
allocate memory, system versions do not, so that <link
54
+
linkend="ini.memory-limit">memory_limit</link> does not apply.
55
+
</simpara>
56
+
</caution>
50
57
</para>
51
58

52
59
<para>
...
...
@@ -82,7 +89,7 @@
82
89
<entry>GIF</entry>
83
90
<entry>&true;</entry>
84
91
<entry>&true;</entry>
85
-
<entry>Available as of GD 2.0.28 and PHP 5.0.1</entry>
92
+
<entry></entry>
86
93
</row>
87
94
<row>
88
95
<entry>XBM</entry>
...
...
@@ -94,7 +101,7 @@
94
101
<entry>XPM</entry>
95
102
<entry>&true;</entry>
96
103
<entry>&false;</entry>
97
-
<entry>Read support available on Windows as of PHP 5.3.19.</entry>
104
+
<entry></entry>
98
105
</row>
99
106
<row>
100
107
<entry>WBMP</entry>
...
...
@@ -106,7 +113,13 @@
106
113
<entry>WebP</entry>
107
114
<entry>&true;</entry>
108
115
<entry>&true;</entry>
109
-
<entry>PHP 5.5+</entry>
116
+
<entry></entry>
117
+
</row>
118
+
<row>
119
+
<entry>BMP</entry>
120
+
<entry>&true;</entry>
121
+
<entry>&true;</entry>
122
+
<entry>Available as of PHP 7.2.0</entry>
110
123
</row>
111
124
</tbody>
112
125
</tgroup>
...
...
@@ -126,6 +139,8 @@
126
139
&reference.image.constants;
127
140
&reference.image.examples;
128
141
&reference.image.reference;
142
+
&reference.image.gdimage;
143
+
&reference.image.gdfont;
129
144

130
145
</book>
131
146

132
147