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 — Bir GD resmine gamma düzeltmesi uygular
Açıklama
bool imagegammacorrect
( resource
$resim
, float $girdigamma
, float $çıktıgamma
)
resim ile belirtilen GD resmine belirtilen girdi ve
çıktı gamma düzeltmelerini uygular.
Değiştirgeler
-
resim -
imagecreatetruecolor() gibi bir resim oluşturma işlevinden dönen bir resim verisi.
-
girdigamma -
Girdi gamması.
-
çıktıgamma -
Çıktı gamması.
Dönen Değerler
Başarı durumunda TRUE, başarısızlık durumunda FALSE döner.
Örnekler
Örnek 1 - imagegammacorrect() örneği
<?php
// Bir resim yükleyelim
$im = imagecreatefromgif('php.gif');
// Gammayı düzeltelim, çıktı = 1.537
imagegammacorrect($im, 1.0, 1.537);
// Resmi kaydedip belleği serbest bırakalım
imagegif($im, './php_gamma_corrected.gif');
imagedestroy($im);
?>
brian dot duncan at fife dot co dot uk ¶
11 years ago
