PHP Doku:: Anwendung einer Gamma-Korrektur auf ein GD-Bild - function.imagegammacorrect.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzBildverarbeitung und -generierungBildbearbeitung und GDGD- und Image-Funktionenimagegammacorrect

Ein Service von Reinhard Neidl - Webprogrammierung.

GD- und Image-Funktionen

<<imagefttext

imagegd2>>

imagegammacorrect

(PHP 4, PHP 5)

imagegammacorrect Anwendung einer Gamma-Korrektur auf ein GD-Bild

Beschreibung:

int imagegammacorrect ( resource $im , double $inputgamma , double $outputgamma )

Die Funktion ImageGammaCorrect() bewirkt die Anwendung einer Gamma-Korrektur auf das mittels Bezeichner im angegebene GD-Bild. Anzugeben ist der Eingabe-Gammawert inputgamma und der Ausgabe-Gammawert outputgamma.


Ein BenutzerBeitrag:
- Beiträge aktualisieren...
brian dot duncan at fife dot co dot uk
26.01.2002 14:46
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 ) ;
}



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)