Just thought I'd add how I used the gamma correction function (seeing as no-one had done so previously). works great.
I used a form which has a parameter $GAMMA, so I usually type in something like 1.6
$image = ImageCreateFromJpeg ( "pictures/".$PICTURE2 ) ;
if ($GAMMA != "")
{
$GammaFloat = (double) $GAMMA ;
imagegammacorrect ($image, 1.0, $GammaFloat ) ;
// now save the file
imagejpeg ( $image, "pictures/"."$PICTURE2", 90 ) ;
}
imagegammacorrect
(PHP 4, PHP 5)
imagegammacorrect — Applique une correction gamma à l'image GD
Description
bool imagegammacorrect
( resource $image
, float $inputgamma
, float $outputgamma
)
Applique une correction gamma à l'image GD image .
Liste de paramètres
- image
-
Une ressource d'image, retourné par une des fonctions de création d'images, comme imagecreatetruecolor().
- inputgamma
-
Le facteur gamma d'entrée.
- outputgamma
-
Le facteur gamma de sortie.
Valeurs de retour
Cette fonction retourne TRUE en cas de succès, FALSE en cas d'échec.
Exemples
Exemple #1 Exemple avec imagegammacorrect()
<?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);
?>
imagegammacorrect
brian dot duncan at fife dot co dot uk
26-Jan-2002 01:46
26-Jan-2002 01:46
