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
imagegif(3) - php
imagepolygon(3) - php
image2wbmp(3) - php
imagecolorstotal(3) - php
imagesettile(3) - php
Similar Topics in the Unix Linux Community
Rules for Homework &amp; Coursework Questions Forum
Forum Video Tutorial: How to Use Code Tags
UNIX.COM 2017 Year End Summary
Coming Soon: Upgrade Forum Software (Dec 31 - Jan 1)
Please Welcome Don Cragun as Lead Moderator