Files
doc-fr/reference/image/functions/imagegammacorrect.xml
2021-09-24 04:13:47 +01:00

117 lines
2.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<!-- EN-Revision: 593ea510e853ff034e03f78a4be0daa41661c9d4 Maintainer: yannick Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="function.imagegammacorrect" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>imagegammacorrect</refname>
<refpurpose>Applique une correction gamma à l'image GD</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>bool</type><methodname>imagegammacorrect</methodname>
<methodparam><type>GdImage</type><parameter>image</parameter></methodparam>
<methodparam><type>float</type><parameter>input_gamma</parameter></methodparam>
<methodparam><type>float</type><parameter>output_gamma</parameter></methodparam>
</methodsynopsis>
<para>
Applique une correction gamma à l'image GD <parameter>image</parameter>.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
&gd.image.description;
<varlistentry>
<term><parameter>input_gamma</parameter></term>
<listitem>
<para>
Le facteur gamma d'entrée.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><parameter>output_gamma</parameter></term>
<listitem>
<para>
Le facteur gamma de sortie.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
&return.success;
</para>
</refsect1>
<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
&gd.changelog.image-param;
</tbody>
</tgroup>
</informaltable>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Exemple avec <function>imagegammacorrect</function></title>
<programlisting role="php">
<![CDATA[
<?php
// Création d'une image
$im = imagecreatefromgif('php.gif');
// Correction gamma, sortie à 1.537
imagegammacorrect($im, 1.0, 1.537);
// Sauvegarde et libération de la mémoire
imagegif($im, './php_gamma_corrected.gif');
imagedestroy($im);
?>
]]>
</programlisting>
</example>
</para>
</refsect1>
</refentry>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->