Source of: /manual/en/image.configuration.php
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/image.setup.inc";
$setup = array (
'home' =>
array (
0 => 'index.php',
1 => 'PHP Manual',
),
'head' =>
array (
0 => 'UTF-8',
1 => 'en',
),
'this' =>
array (
0 => 'image.configuration.php',
1 => 'Runtime Configuration',
),
'up' =>
array (
0 => 'image.setup.php',
1 => 'Installing/Configuring',
),
'prev' =>
array (
0 => 'image.installation.php',
1 => 'Installation',
),
'next' =>
array (
0 => 'image.resources.php',
1 => 'Resource Types',
),
);
$setup["toc"] = $TOC;
$setup["parents"] = $PARENTS;
manual_setup($setup);
manual_header();
?>
<div id="image.configuration" class="section">
<h2 class="title">Runtime Configuration</h2>
<p class="simpara">
The behaviour of these functions is affected by settings in <var class="filename">php.ini</var>.
</p>
<p class="para">
</p><table class="doctable table">
<caption><b>Image Configure Options</b></caption>
<thead valign="middle">
<tr valign="middle">
<th>Name</th>
<th>Default</th>
<th>Changeable</th>
<th>Changelog</th>
</tr>
</thead>
<tbody valign="middle" class="tbody">
<tr valign="middle">
<td align="left">gd.jpeg_ignore_warning</td>
<td align="left">"0"</td>
<td align="left">PHP_INI_ALL</td>
<td align="left">Available since PHP 5.1.3.</td>
</tr>
</tbody>
</table>
<p>
For further details and definitions of the
PHP_INI_* modes, see the <a href="configuration.changes.modes.php" class="xref">Where a configuration setting may be set</a>.
</p>
<p class="para">Here's a short explanation of
the configuration directives.</p>
<p class="para">
</p><dl>
<dt id="ini.image.jpeg-ignore-warning" class="varlistentry">
<span class="term">
<i><tt class="parameter">gd.jpeg_ignore_warning</tt></i>
<a href="language.types.boolean.php" class="type bool">bool</a>
</span>
</dt><dd class="listitem">
<p class="para">
Ignore warnings created by <a href="function.jpeg2wbmp.php" class="function">jpeg2wbmp()</a> and
<a href="function.imagecreatefromjpeg.php" class="function">imagecreatefromjpeg()</a>
</p>
</dd>
</dl>
<p>
</p>
<p class="para">
See also the <a href="exif.configuration.php" class="link">exif</a> configuration
directives.
</p>
<div class="warning"><b class="warning">Warning</b>
<p class="para">
Image functions are very memory intensive. Be sure to set <a href="ini.core.php#ini.memory-limit" class="link">memory_limit</a> high enough.
</p>
</div>
</div><?php manual_footer(); ?>