imagegammacorrect

(PHP 4, PHP 5, PHP 7)

imagegammacorrectApply a gamma correction to a GD image

설명

bool imagegammacorrect ( resource $image , float $inputgamma , float $outputgamma )

Applies gamma correction to the given gd image given an input and an output gamma.

인수

image

imagecreatetruecolor() 등의 이미지 생성 함수에서 반환한 이미지 자원.

inputgamma

The input gamma.

outputgamma

The output gamma.

반환값

성공 시 TRUE를, 실패 시 FALSE를 반환합니다.

예제

Example #1 imagegammacorrect() usage

<?php
// Create image instance
$im imagecreatefromgif('php.gif');

// Correct gamma, out = 1.537
imagegammacorrect($im1.01.537);

// Save and free image
imagegif($im'./php_gamma_corrected.gif');
imagedestroy($im);
?>

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top