php man page for imagegammacorrect

Query: imagegammacorrect

OS: php

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

IMAGEGAMMACORRECT(3)							 1						      IMAGEGAMMACORRECT(3)

imagegammacorrect - Apply a gamma correction to a GD image

SYNOPSIS
bool imagegammacorrect (resource $image, float $inputgamma, float $outputgamma)
DESCRIPTION
Applies gamma correction to the given gd $image given an input and an output gamma.
PARAMETERS
o $ image -An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(3). o $inputgamma - The input gamma. o $outputgamma - The output gamma.
RETURN VALUES
Returns TRUE on success or FALSE on failure.
EXAMPLES
Example #1 imagegammacorrect(3) usage <?php // Create image instance $im = imagecreatefromgif('php.gif'); // Correct gamma, out = 1.537 imagegammacorrect($im, 1.0, 1.537); // Save and free image imagegif($im, './php_gamma_corrected.gif'); imagedestroy($im); ?> PHP Documentation Group IMAGEGAMMACORRECT(3)
Related Man Pages
imagecreatefromstring(3) - php
imagecopy(3) - php
imagegd(3) - php
imagesetbrush(3) - php
imagetruecolortopalette(3) - php
Similar Topics in the Unix Linux Community
Please Welcome Don Cragun as Lead Moderator
Status of UNIX.COM Forum Transformation
Please Welcome Ravinder Singh to the Moderation Team
The Order of the Wizard's Hat - Lifetime Achievement Award 2019 - Congrats to Don Cragun
Please Welcome Nicki Paul to the Moderator Team!